/* ==========================================================
   ERP REPORT PORTAL
========================================================== */

body{
    background:#f4f7fb;
    font-family:"Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
    color:#333;
}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar{
    background:linear-gradient(90deg,#0d6efd,#0b5ed7)!important;
}

.navbar-brand{
    font-size:24px;
    font-weight:700;
    letter-spacing:.5px;
}

/* ==========================================================
   WELCOME
========================================================== */

h2{
    font-weight:700;
}

.section-title{
    font-weight:700;
    color:#0d6efd;
    margin-bottom:20px;
}

/* ==========================================================
   DASHBOARD CARDS
========================================================== */

.dashboard-card{
    border:none;
    border-radius:18px;
    transition:.3s;
    overflow:hidden;
}

.dashboard-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.dashboard-card .card-body{
    text-align:center;
    padding:30px;
}

.dashboard-card h2{
    font-size:34px;
    font-weight:700;
    margin-top:10px;
}

.dashboard-card h5{
    font-weight:700;
}

.dashboard-card h6{
    color:#777;
    text-transform:uppercase;
    letter-spacing:1px;
}

.icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:30px;
}

/* ==========================================================
   REPORT CARDS
========================================================== */

.report-card{
    border:none;
    border-radius:18px;
    transition:.3s;
}

.report-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.report-card .card-body{
    padding:30px;
}

.report-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.report-card p{
    color:#666;
    min-height:50px;
}

/* ==========================================================
   BUTTONS
========================================================== */

.btn{
    border-radius:30px;
    padding:10px 24px;
    font-weight:600;
}

.btn-primary{
    background:#0d6efd;
    border:none;
}

.btn-success{
    border:none;
}

.btn:hover{
    transform:scale(1.03);
}

/* ==========================================================
   DATABASE STATUS
========================================================== */

.card .col{
    padding:20px;
    font-size:18px;
}

.card .col strong{
    display:block;
    margin-top:8px;
    font-size:17px;
}

/* ==========================================================
   FOOTER
========================================================== */

footer{
    font-size:15px;
    padding:20px;
}

/* ==========================================================
   LOADING MODAL
========================================================== */

.modal-content{
    border:none;
    border-radius:20px;
}

.spinner-border{
    width:4rem;
    height:4rem;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:991px){

    .dashboard-card{
        margin-bottom:20px;
    }

    .report-card{
        margin-bottom:20px;
    }

}

@media(max-width:768px){

    h2{
        font-size:28px;
    }

    .navbar-brand{
        font-size:20px;
    }

    .dashboard-card h2{
        font-size:28px;
    }

    .report-card h4{
        font-size:22px;
    }

}

@media(max-width:576px){

    .dashboard-card .card-body{
        padding:22px;
    }

    .report-card .card-body{
        padding:22px;
    }

    .btn{
        width:100%;
    }

}