:root{
    --theme-background-color: #f3f3f3;
    --theme-text-color: #333;
    --theme-primary-color: #007bff;
    --theme-secondary-color: #6c757d;
    --theme-success-color: #28a745;
    --theme-danger-color: #dc3545;
    --theme-warning-color: #ffc107;
    --theme-info-color: #17a2b8;
    --theme-light-color: #f8f9fa;
    --theme-dark-color: #343a40;
    --theme-white-color: #fff;
    --theme-black-color: #000;
    --theme-dark-primary-color: #0b1e5a;
}

body{
    background-color: var(--theme-background-color);
    color: var(--theme-text-color);
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

.hsr-theme-btn{
    background-color: var(--theme-dark-primary-color);
    color: var(--theme-white-color);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.hsr-theme-btn:hover{
    background-color: var(--theme-primary-color);
    color: var(--theme-white-color);
}

.hsr-theme-danger-btn{
    background-color: var(--theme-danger-color);
    color: var(--theme-white-color);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}


.text-sm{
    font-size: .9rem;
}

.form-control:focus, .form-select:focus{
    box-shadow: none;
}

/* Login */

.hsr-login-card{
    background-color: var(--theme-dark-primary-color);
}

.hsr-forgot-password{
    color: var(--theme-primary-color);
    cursor: pointer;
    text-decoration: none;
    font-size: .9rem;
}

.hsr-main-content{
    /* display: flex;
    align-items: center;
    justify-content: center; */
    height: 50vh;
    background-color: var(--theme-dark-primary-color);
}

.hsr-main-area{
    height: 20vh;
    background-color: var(--theme-dark-primary-color);
}


/* User Dashboard */

.hsr-left-sidebar{
    width: 250px;
    background-color: var(--theme-dark-primary-color);
    height: 100vh;
    overflow: auto;
    transition: all .3s;
}

.hsr-main-area{
    width: calc(100% - 250px);
    background-color: var(--theme-background-color);
    height: 100vh;
    overflow: auto;
}

#hsr-menu-toggle:checked ~ .d-flex  .hsr-left-sidebar{
    width: 0;
}

#hsr-menu-toggle:checked ~ .d-flex .hsr-main-area{
    width: 100%;
}

#hsr-toggle-label{
    cursor: pointer;
}

@media(max-width:991px){
    .hsr-left-sidebar{
        width: 0;
    }

    .hsr-main-area{
        width: 100%;
    }
}

.offcanvas{
    width: 250px;
    background-color: var(--theme-dark-primary-color);
    height: 100vh;
    overflow: auto;
}

/* Sidebar Menus */
.accordion-button {
    border: none !important;
    padding: 15px 20px;
    font-size: .9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: none;
    background-color: transparent;
    border-radius: 10px !important;
    color: rgba(255, 255, 255, 0.6);
}

.accordion-item {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(
        --accent-color
    ) !important; /* Active menu background */
    color: #fff; /* Active text color */
    box-shadow: none;
}

.accordion-button:hover {
    background-color: var(--accent-color); /* Hover effect */
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Submenu links */
.accordion-body a {
    color: rgba(255, 255, 255, 0.6); /* Subtle text color */
    padding: 5px 0;
    display: block;
    font-size: .9rem;
    font-weight: 400 !important;
}

.accordion-body a:hover {
    color: #fff; /* Highlight on hover */
}

.accordion-body {
    background-color: transparent;
    padding-top: 0.5rem !important;
    padding-left: 2rem;
    padding-bottom: 1rem;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
    background-size: 12px;
    width: 14px;
    height: 14px;
}


/* Profile */

.hsr-profile-image img{
    border: 2px solid var(--theme-primary-color);
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin: auto;
    display: block;
}


/* Feedback Final PDF */

.hsr-feedback-final-pdf{
    background-color: white;
    padding: 2rem 1rem;
}

.hsr-feedback-final-pdf .hsr-college-info{
    /* width: calc(100% - 150px - 2rem); */
    margin-left: 1rem;
}

.hsr-feedback-final-pdf .hsr-college-logo{
    height: 150px;
    width: 150px;
    object-fit: cover;
}

.hsr-feedback-final-pdf .hsr-divider{
    border-top: 2px solid black;
    margin-top: 1rem;
}

.hsr-dot-border-bottom{
    border-bottom: 2px dotted black;
}

.hsr-checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 50px;
    border-radius: 5px;
    border: 1px solid black;
}

.hsr-signature{
    width: 100%;
    height: 70px;
    object-fit: contain;
    object-position: center;
}

/* Sidebar Menus */



.hsr-alumni-img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
}