﻿@media print {
    .page-break {
        page-break-before: always;
        break-before: page;
    }
}

.form-group label {
    font-weight: 600;
}

table {
    font-size: 13px !important;
    vertical-align: middle !important;
}
    table thead tr {
        vertical-align: middle !important;
        background-color: #F9F9F9 !important;
    }

    table td {
        vertical-align: middle !important;
    }


#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #4B8B81;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.CodeMirror {
    font-size: 13px;
}

.sidebar .sidebar-brand {
    height: auto !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}