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

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

@font-face {
    font-family: Heavy;
    src: url('../fonts/Heavy.otf');
}

.heavy-font {
    font-family: Heavy;
}

@font-face {
    font-family: Black;
    src: url('../fonts/Black.otf');
}

.black-font {
    font-family: Black;
}

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

.full-height {
    height: 70vh;
    overflow: auto;
}

.height-100 {
    height: 55vh;
    overflow: auto;
}

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

.text-primary {
    color: #800000;
}

.data-div {
    height: 80vh;
    overflow: auto;
}

.menu-icon {
    font-size: 32px;
}

.square {
    border-radius: unset;
}

.button {
    background-color: #800000;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.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);
}

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

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

.alert {
    display: none;
}

.form-floating {
    margin-bottom: 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;
    }
}