﻿
:root {
    --mm-sidebar-expanded-size: 260px !important;
    --primary: #0a0b3d;
    --secondary: #151773;
    --accent: #4e54ff;
    --light: #f0f4ff;
    --success: #198754;
    --gradient: linear-gradient(135deg, #4e54ff 0%, #8a2be2 100%);
}

body {
    font-family: Arial, sans-serif;
}
/*--btn Styles--*/
.btn {
    border-radius: 0px !important;
}
/*--btn Styles--*/

/*Header*/

.header {
    background: var(--gradient);
    color: white;
    padding: 10px;
}

    .header a {
        color: white !important;
    }

@media (min-width: 992px) {
    .header a {
        display: none;
    }
}

/*Header*/

/*Form*/


.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.header-section {
    background: var(--gradient);
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-section {
    padding: 2rem;
}

.section-title {
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-control, .form-select {
    border: 2px solid #e1e5ff;
    border-radius: 10px;
    padding: 0.25rem 0.75rem;
    transition: all 0.3s;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 0.25rem rgba(78, 84, 255, 0.25);
    }

.input-group-text {
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px 0 0 10px;
}

.btn-submit {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.50rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 5px;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(78, 84, 255, 0.3);
    }

.btn-list {
    background: var(--success);
    color: white;
    border: none;
    padding: 0.50rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 5px;
}

    .btn-list:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(78, 84, 255, 0.3);
    }

.futuristic-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

    .futuristic-card:hover {
        transform: translateY(-5px);
    }

.glowing-border {
    position: relative;
}

    .glowing-border::after {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        z-index: -1;
        background: var(--gradient);
        border-radius: 12px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .glowing-border:focus-within::after {
        opacity: 1;
    }

@media (max-width: 768px) {
    .form-container {
        margin: 1rem;
    }
}

/*Form*/

/*--Footer--*/
.footer {
    font-size: 14px;
    background-color:black;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
/*--Footer--*/

/*--Fixed Table--*/
.tableFixed{
    width: 100% auto;
    overflow-y: auto;
    height: 270px !important;
}
/*--Fixed Table--*/

/*--Loader--*/
.loader {
    display: none;
    position: fixed;
    width: 100% !important;
    height: 100vh !important;
    opacity: 1;
    z-index: 999999 !important;
    background-color: #333;
}

.lds-facebook {
    left: 50%;
    top: 50%;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-facebook div {
        display: inline-block;
        position: absolute;
        left: 8px;
        width: 16px;
        background: #fff;
        animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }

        .lds-facebook div:nth-child(1) {
            left: 8px;
            animation-delay: -0.24s;
        }

        .lds-facebook div:nth-child(2) {
            left: 32px;
            animation-delay: -0.12s;
        }

        .lds-facebook div:nth-child(3) {
            left: 56px;
            animation-delay: 0;
        }

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}
/*--Loader--*/

label{
    margin-bottom: 0px;
}
.form-group {
    margin-bottom: 5px;
}
.col-pad-r-5{
    padding-right: 5px;
}
.col-pad-5 {
    padding-right: 5px;
    padding-left: 5px;
}
/*Table*/
.table thead th{
    background-color: black;
    color: white;
    padding: 5px;
}