﻿input {
    font-weight: bold;
}

p, a {
    font-weight: bolder;
}

#ButtonToggle {
    display: none;
}

@media (max-width: 768px) {

    #ButtonToggle {
        display: block;
    }

    .main-header.navbar {
        display: none !important;
    }

    .main-sidebar {
        width: 250px;
        background-color: #013166 !important;
        color: white;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        transition: all 0.3s;
    }

        .main-sidebar .nav-link {
            color: white;
            padding: 10px;
            display: block;
        }

            .main-sidebar .nav-link:hover {
                background: rgba(255, 255, 255, 0.1);
            }

    .sidebar-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
        color: white;
        background: white;
        padding: 15px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1000;
        transition: background 0.3s;
    }

        .sidebar-toggle:hover {
            background: white;
        }

    .sidebar-toggle {
        display: block;
    }

    .main-sidebar {
        left: -250px;
    }

        .main-sidebar.active {
            left: 0;
        }

    .content-wrapper {
        margin-left: 250px;
        padding: 20px;
        transition: all 0.3s;
    }

    .content-wrapper {
        margin-left: 0;
    }

    #loadingAnimation {
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(255, 255, 255, 1);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .logo {
        width: 100px;
        height: auto;
        position: absolute;
        z-index: 1;
    }

    .spinner {
        width: 180px;
        height: 180px;
        border: 10px solid rgba(0, 0, 0, 0.1);
        border-top: 10px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    @keyframes spin {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
}

.select2 {
    width: 100% !important;
}
