* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    list-style: none;
    text-decoration: none;
}

#auth {
    background-color: #18962a;
    font-family: 'Roboto', sans-serif;

}

#auth .container {
    background-color: white;
    width: 88vw;
    /* height: 90vh; */
    margin: auto;
    margin-top: 5vh;
    border-radius: 2rem;
    box-shadow: 2px 2px 8px #7c7c7c;
}


@media (min-width: 768px) {
    #auth .container {
        width: 30rem;
        /* height: 90vh; */
        margin: auto;
        margin-top: 5vh;
    }
}

#auth .logo {
    padding-top: 2rem;
    margin-bottom: 2rem;
}

#auth .logo img {
    width: 11rem;
    height: 9rem;
    margin: auto;
    text-align: center;
    display: block;
    box-shadow: 2px 2px 8px #bab7b7;
    border-radius: 2.5rem;
}

#auth .form {
    width: 100%;
    /* padding: 2rem; */
}

.center {
    text-align: center;
}

.form h3 {
    margin-bottom: 1rem;
    font-family: 'ADLaM Display', cursive;
    font-size: 2rem;
}

.form a {
    color: #18962a;
    font-weight: bolder;
    text-decoration: none;
    text-align: center;

}

.form form {
    padding: 2rem;
}

.form form input {
    width: 100%;
    height: 2rem;
    border: none;
    border-bottom: 2px #ececec solid;
    padding-bottom: .5rem;
    outline: none;
}

.no-border {
    border: none !important;
    padding: .8rem;
    padding-bottom: .3rem !important;
    background-color: #ccc;
    width: 90% !important;
    margin-top: .5rem;
    border-radius: .5rem;
}

.form form select {
    width: 100%;
    height: 2rem;
    border: none;
    border-bottom: 2px #ececec solid;
    padding-bottom: .5rem;
    outline: none;
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    font-size: .8rem;
}

.form form input:focus {

    border-bottom: 2px #18962a solid;
    transition: .5s;
}

.desc {
    font-size: .9rem;
    color: #333
}

.mt-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

form button {
    background-color: #18962a;
    width: 80%;
    margin: auto;
    display: block;
    padding: .9rem;
    margin-top: 2rem;
    border-radius: 2rem;
    border: none;
    color: white;
    font-family: 'ADLaM Display', cursive;
    font-size: 1.3rem;
}

.flex {
    display: flex;
}

.checkbox {
    width: 1rem !important;
    height: 1rem !important;
    border: none;
    padding-bottom: 0 !important;
    margin-right: .7rem !important;
    outline: none;
}

#auth .flex {
    font-size: .8rem;
    color: #333;
    margin-top: 2rem;
}

.f-2 {
    font-size: 1.3rem;
    font-weight: bolder;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #18962a;
    height: 3rem;
    z-index: 99;
}

header ul {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.menubar,
.username,
.home a,
.logout a {
    display: flex;
    gap: .2rem;
    color: white;
    font-weight: bold
}

header ul li {
    display: flex;
    gap: 1rem;
    color: white
}

.sidebar {
    background-color: rgb(218, 242, 218);
    position: fixed;
    height: 100vh;
    overflow: scroll;
    margin-top: 0;
    z-index: 99;
    top: 3rem;
    overflow: scroll;
    margin-bottom: 10rem;
}

.balance {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
}

.balance h6 {
    font-size: 1rem;
    margin-bottom: .5rem
}


.balance h3 {
    font-size: 2rem;
}

#links {
    display: grid;
    padding: 1rem;
    gap: .5rem;
    margin-bottom: 10rem;
}

#links li {
    padding: 1rem;
    background-color: white;
    border-radius: .5rem;

}

#links li:hover,
#links .active {
    padding: 1rem;
    background-color: #18962a;
    border-radius: .5rem;

}

#links li:hover a,
#links .active a {
    color: white !important
}

#links li a {
    display: flex;
    color: #18962a;
    font-weight: bold;
    gap: .5rem;
}

#main{
    margin-top:5rem
}

.item-container{
    background-color: #ececec;
    /* margin:2rem; */
    padding: 2rem;
    border-radius: 2rem;
}

.panel-heading{
    border-bottom: 1px solid #ccc;
    padding-bottom: .5rem;
}
.grid{
    display: grid;
}
.box{
    background-color: rgb(35, 158, 143);
    padding: 2rem;
    border-radius: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.box h3{
    font-size: 2rem;
}
.box h6{
    font-size: 1.2rem;
    margin-top: .4rem;
    text-transform: uppercase;
}

.green{
    background-color: rgb(224, 89, 62);
}
.blue{
    background-color: rgb(23, 21, 127);
}

/* Container for the main content */
#main {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    /* margin: 20px auto; */
    padding: 20px;
    width: 90%;
    max-width: 1200px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}
/* Table Container Styles */
.table-container {
    overflow-x: auto;
}

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top:2rem;
    margin-bottom:2rem;
}

.table th,
.table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}

.table th {
    background-color: #f0f0f0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .table-container {
        overflow-x: scroll;
    }
}


/* Panel Styles */
.panel-heading {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
}

.panel-body {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

/* Form Styles */
.form-horizontal .form-group {
    margin-bottom: 15px;
}

.control-label {
    font-weight: bold;
}

.form-control {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: .5rem;
    background-color: #fff;
    margin-bottom:1rem;
    margin-top:.3rem;
}

/* Button Styles */
.btn-primary {
    background-color: #ff5f00;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #ff3a00;
}

 /* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

/* Container Styles */
.item-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Panel Styles */
.panel {
    margin-bottom: 20px;
}

.panel-body {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

/* Plan Box Styles */
.stat-panel {
    padding: 20px;
}

.stat-panel-number {
    font-size: 24px;
    font-weight: bold;
}

.stat-panel-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Link Styles */
.block-anchor {
    display: block;
    text-align: center;
    background-color: #1a1b1c;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-top: -.5rem;
    font-weight: bolder;
}


.block-anchor:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .item-container {
        padding: 10px;
    }
    
    .col-md-3 {
        width: 100%;
        margin-bottom: 20px;
    }
}


.fs2{
    font-size: 2.5rem;
}

.bk-primary{
background-color: #0056b3;
color: white;
}

.bk-success{
    background-color: #18962a;
    color: white;
}

.bk-danger{
    background-color: rgb(202, 40, 40);
    color: white;
}

.bk-info{
    background-color: #447bdb;
    color: white;
}