@font-face {
    font-family: Regular;
    src: url('../fonts/sfr.OTF');
}

.mesej-regular-font {
    font-family: Regular;
}

.mesej-center {
    margin-left: auto;
    margin-right: auto;
}

.mesej-primary {
    background-color: #800000;
    color: #FFFFFF;
}

.mesej-text-primary {
    color: #800000;
}

.mesej-login-container {
    max-width: 350px;
    margin: 100px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

.mesej-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.mesej-login-header img {
    max-width: 250px;
    margin-bottom: 15px;
}

.mesej-alert {
    display: none;
}

.mesej-form-floating {
    margin-bottom: 20px;
}

.container {
    margin-top: 20px;
}

#data-container {
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto;
}

.data-item {
    padding: 8px;
    border-bottom: 1px solid #eee;
    animation: fadeIn 0.5s;
}

.data-item:last-child {
    border-bottom: none;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}


.message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.connected {
    background-color: #4CAF50;
}

.online {
    background-color: #4CAF50;
}

.offline {
    background-color: #F44336;
}

.connecting {
    background-color: #FFC107;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}