


/* ################################################################# */


/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(1, 1, 1);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ffffff;
    width: 80%;
    max-width: 500px;
    background-color: rgb(255, 255, 255);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* ################################################################# */
/* making footer anchor tag black not only footer all over the website a tag will become black and also changing hover efect*/
a {
    color: black;
    text-decoration: none; /* Optional: Remove underline */
}
a:hover {
    color: darkgray;
}

/* ################################################################# */
/* for footer section */

#footer section .footer {
    background-color: #f8f9fa;
    color: rgb(9, 9, 9);
    padding: 20px 0;
}

.footer .col h5 {
    font-weight: bold;
}

.footer .col p,
.footer .col a {
    color: rgb(14, 13, 13);
}

.footer .col a:hover {
    color: #cccccc;
}

.footer-bottom {
    border-top: 1px solid #060606;
    padding-top: 10px;
    margin-top: 20px;
    text-align: center;
}




/* ################################################################# */

/* for login page  */

body {
    background-color: #ffffff;
}

.card {
    margin-top: 50px;
    margin-bottom: 100px;
}

.card-header {
    background-color: #343a40;
    color: white;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}/* ################################################################# */

/* username and useremail id  */
.nav-link-custom{
    font-size: 12px;
}

/* ################################################################# */


/* home paged */
body {
    font-family: Arial, sans-serif;
}

.hero-section {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.features-section h3 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.features-section p {
    margin-bottom: 30px;
}
/* ################################################################# */

/* for dashboard page increasing height of the page */
.dashboardtable{
    margin-bottom: 500px;
}
/* ################################################################# */
/* for sidebar   */
/* body {
    display: flex;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
} */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    background: #333;
    overflow-x: hidden;
    transition: width 0.3s;
}

.sidebar:hover {
    width: 200px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.sidebar-item {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.sidebar-item:hover {
    background: #575757;
}

.sidebar-item::before {
    content: attr(data-title);
    display: block;
    margin: 0 auto;
    white-space: nowrap;
}

.main-content {
    margin-left: 60px;
    padding: 20px;
    width: 100%;
    transition: margin-left 0.3s;
}

.sidebar:hover ~ .main-content {
    margin-left: 200px;
}
