/* === Resets and Global Styles === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0; 
}

/* === Typography === */
body {
    font-family: "Poppins", serif; 
    font-style: normal;
}

/* === Variables === */
:root {
    --primary_color: #444;
    --background_one: #4285F4;
    --text_color_one: #000;
    --text_color_two: #fff;
    --text_color_three: #333;
    --text_color_four: red;
    --background_two: transparent;
    --background_three: #fff;
    --background_four: #264f86;
    --shadow_soft: 0 4px 20px rgba(0,0,0,0.15);
    --transition_fast: 0.3s ease;
    --transition_slow: 1s ease;
    --border_radius_small: 5px;
    --border_radius_medium: 8px;
    --border_radius_large: 10px;
    --border_radius_round: 50%;
    --focus_shadow: 0 0 0 3px rgba(66, 133, 244, 0.3);
} 

/* === Layout === */
.mycontainer {
    grid-template-areas:
        "header"
        "content"
        "footer";
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
}

.myheader {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 70px; 
    z-index: 2000; 
    background-color: #f0f0f0;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
}

.mycontent {
    margin-left: 0;
    margin-top: 70px; 
}

.myfooter {
    position: relative;
    padding: 25px 25px 100px 25px;
    font-weight: normal;
    background: var(--background_three);
    border-top: 2px solid lightgrey;
    margin-left: 0;
}
.footer-body {
    flex-basis: 31%;
    text-align: left;
    margin-bottom: 50px;
}

.footer-body > div:last-child {
    margin-bottom: 0px;
}

.footer-body a {
    color: #666;
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    transition: color var(--transition_fast);
}

.footer-body ul {
    display: block;
    margin: 0;
    padding: 0;
}

.footer-body li {
    list-style-type: none;
}

.footer-body a:hover,
.footer-body a:focus {
    text-decoration: underline;
    color: var(--background_one);
}

.footer-body i {
    color: var(--background_four);
    font-size: 22px;
}

.footer-body span {
    font-size: 15px;
    color: #666;
}

.footer-body h4 {
    color: var(--background_four);
}

.footer-copyrights {
    text-align: center;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    color: var(--text_color_two);
    font-weight: 400;
    background: var(--background_four);
}

.footer-copyrights a {
    color: gold;
    transition: color var(--transition_fast);
}

.footer-copyrights a:hover,
.footer-copyrights a:focus {
    color: var(--text_color_four);
}
.footer-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.footer-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--text_color_three);
    border-radius: var(--border_radius_medium);
    transition: all var(--transition_fast);
    text-decoration: none;
    color: var(--text_color_two);
}

.footer-icons a:hover,
.footer-icons a:focus {
    background: firebrick;
    color: var(--text_color_three);
    transform: scale(1.1);
    text-decoration: none;
}

.footer-icons .fa-brands {
    font-size: 23px;
    color: var(--text_color_two);
}

.myrow {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mysidebar {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 250px;
    min-height: 500px;
    opacity: 0;
    z-index: 2000;
    background-color: var(--background_three);
    box-shadow: var(--shadow_soft);
    padding: 25px 0 0 0;
    transition: opacity 0.5s ease; /* Improved transition time for better UX */
    display: none;
    border-radius: var(--border_radius_large);
}
.mymenu-bar {
    display: block;
    color: #555;
    border: 1px solid lightgrey;
    padding: 8px 10px;
    font-size: 22px;
    border-radius: var(--border_radius_small);
    cursor: pointer;
    transition: color var(--transition_fast);
}
.menu-open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.sidebar-menu {
    position: relative;
    overflow-y: scroll;
    padding: 5px;
}

.sidebar-menu ul {
    flex: 1;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu li a {
    display: flex;
    padding: 12px 15px;
    color: var(--text_color_three);
    text-decoration: none;
    transition: background var(--transition_fast);
}

.sidebar-menu li a:hover,
.sidebar-menu li a:focus {
    background: #f0f0f0;
}

.sidebar-auth {
    border-bottom-left-radius: var(--border_radius_large);
    border-bottom-right-radius: var(--border_radius_large);
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    align-items: center;
    background-color:#fff; 
    transition: box-shadow var(--transition_fast);
}

.sidebar-auth ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.sidebar-auth li a {
    display: flex;
    padding: 12px 15px;
    color: var(--text_color_three);
    text-decoration: none;
    transition: background var(--transition_fast), color var(--transition_fast);
}

.sidebar-auth a i {
    margin-right: 8px;
}

/* === Components === */
.logo {
    height: 40px;
}
.menu-bar {
    display: block;
    color: #555;
    border: 1px solid lightgrey;
    padding: 8px 10px;
    font-size: 22px;
    border-radius: var(--border_radius_small);
    cursor: pointer;
    transition: color var(--transition_fast);
}

.desktop-menu .material-symbols-outlined {
    display: none;
}

.left-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 23;
    padding-right: 8px;
    color: #666; 
}

.sidebar-auth .material-symbols-outlined {
    padding-right: 8px;
}
.carousel{
   height:60vh;
   width: 100%;
   overflow: hidden;
}
.carousel img {
    width: 100%;
    height:60vh;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.carousel-caption{
   background: rgba(0, 0, 0, 0.5);
   color: #fff;
}
/* Miscellaneous */
.ad-wrapper {
    width: 80%;
    display: block;
    text-align: center;
    margin: 2rem auto;
    grid-column: 1 / -1;
}

.ad-wrapper h6 {
    color: #666;
    font-size: 0.5rem;
}

.grecaptcha-badge {
    visibility: hidden;
}

.scrolling-cont {
    overflow-x: visible;
    white-space: normal;
}

.scrolling-cont > * {
    display: inline-block;
    margin-right: 0;
}

.back-top {
    position: absolute;
    right: 0;
    top: 30px;
    margin: 15px;
}

#myloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dot {
    width: 15px;
    height: 15px;
    margin: 5px;
    border-radius: var(--border_radius_round);
    display: inline-block;
    animation: bounce 1.5s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
    background: #3498db;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
    background: #3498db;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
    background: #3498db;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 50%;
    right: 20px;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text_color_two);
    border: none;
    padding: 15px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: var(--border_radius_small);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background var(--transition_fast), box-shadow var(--transition_fast);
}

#scrollTopBtn:hover,
#scrollTopBtn:focus {
    background: rgba(0, 0, 0, 0.8);
    color: var(--text_color_two);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.sidebar .fa-solid {
    display: block;
    color: #555;
    margin-right: 10px;
}

#commentsContainer img {
    width: 35px;
    height: 35px;
    float:left;
    margin-right:10px;
    border-radius: var(--border_radius_round);
}

.custom-contact-btn:hover {
    background-color: var(--bs-dark);
    color: var(--bs-light);
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out;
}
/* --- Post page styling --- */

/* Hero card */
.post-hero {
    border-radius: 0.6rem;
    overflow: hidden;
    background: #fff;
}

/* Featured image */
.featured-img {
    max-height: 520px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Author avatar */
.author-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

/* Post content: comfortable reading */
.post-content img {
    max-width: 100%;
    height: auto;
}
.post-content p {
    margin-bottom: 1.2rem;
}

/* Comments */
.comments-section {
    border-radius: 0.6rem;
}
#commentsContainer .comment {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
#commentsContainer .comment:last-child {
    border-bottom: none;
}
.comment .comment-meta {
    font-size: 0.9rem;
    color: #6c757d;
}
.comment .comment-body {
    margin-top: 0.35rem;
}

/* Buttons & hover */
.btn-primary {
    transition: transform .18s ease, box-shadow .18s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(13,110,253,0.12);
}

/* Card hover used elsewhere (consistent with blog listing) */
.blog-card-hover {
    transition: transform .24s ease, box-shadow .24s ease;
}
.blog-card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
/* Accessibility helpers */
.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
/* Login/Register Page */
.main-login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: var(--background_three);
    padding: 15px;
    margin: 10vh auto;
}

.login-container {
    background-color: var(--background_three);
    padding: 20px;
    border-radius: var(--border_radius_medium);
    border: 1px solid lightgrey;
    width: 400px;
    max-width: 100%;
}

.form-logo {
    text-align: center;
    margin-bottom: 25px;
}

.form-logo img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.other-logins {
    margin: 35px auto;
}

.other-logins .da {
    font-size: 30px;
}

.other-logins img {
    max-width: 100%;
    height: auto;
}

.form-container {
    text-align: center;
}

.form-container h1 {
    color: var(--text_color_one);
    font-weight: 400;
    margin-bottom: 20px;
}

.password-container {
    position: relative;
    width: 100%;
}

#password {
    width: 100%;
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    transition: color var(--transition_fast);
}

.password-toggle:hover,
.password-toggle:focus {
    color: var(--text_color_one);
}

.form-field {
    display: flex;
    margin-bottom: 15px;
    position: relative;
}

.form-field i {
    font-size: 18px;
    padding: 15px;
    color: var(--background_one);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"] {
    width: 100%;
    border: 1px solid lightgrey;
    outline: none;
    padding: 15px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: all var(--transition_fast);
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="password"]:focus {
    border-color: #007bff;
    box-shadow: var(--focus_shadow);
}

.form-container a {
    text-decoration: none;
    color: var(--background_one);
    transition: text-decoration var(--transition_fast);
}

.form-container a:hover,
.form-container a:focus {
    text-decoration: underline;
}

.form-container span {
    color: var(--text_color_three);
    font-size: 14px;
}

.log_form {
    text-align: center;
    margin-top: 30px;
}

.sign-up-form label {
    display: block;
    margin-bottom: 8px;
    margin-top: 5px;
    font-weight: 550;
    text-align: left;
    color: var(--primary_color);
}

.sign-up-form input[type="text"],
.sign-up-form input[type="email"],
.sign-up-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border_radius_small);
    font-size: 14px;
    transition: border-color var(--transition_fast), box-shadow var(--transition_fast);
}

.sign-up-form input[type="text"]:focus,
.sign-up-form input[type="email"]:focus,
.sign-up-form input[type="password"]:focus {
    border-color: #007bff;
    box-shadow: var(--focus_shadow);
}
.special-footer {
    text-align: center;
    background: var(--text_color_two);
    width: 100%;
    padding: 10px;
}

.special-footer a {
    font-size: 13px;
    text-decoration: underline;
    color: var(--primary_color);
    transition: font-size var(--transition_fast), color var(--transition_fast);
}

.special-footer a:hover,
.special-footer a:focus {
    font-size: 14px;
    color: firebrick;
}

.special-footer p {
    font-size: 15px;
}
#loader { 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.9); 
    z-index: 1050;  
    transition: opacity 0.5s ease-out; 
}

#loader.hidden {
    opacity: 0;
    pointer-events: none; /* Prevents clicks on the now-invisible element */
}
.mycontainer {
    opacity:0.5; /* Starts hidden (optional, if you want content to fade in) */
    transition: opacity 0.5s ease-in; /* Smooth transition for content reveal */
}
.mycontainer.loaded {
    opacity: 1;
}
/* =================================================================
   1. SLIDE-UP NOTIFICATION BAR POPUP (.popup)
   ================================================================= */
.popup {
    /* Positioning and Sizing */
    position: fixed;
    bottom: 20px; /* Final position (20px from bottom) */
    left: 50%;
    z-index: 1000; /* High z-index but below the modal overlay (1060) */
    width: 90%; 
    max-width: 450px;
    height: auto;
    
    /* Aesthetics */
    border-radius: var(--border_radius_large, 10px);
    color: #555;
    font-size: 15px; /* Slightly larger text */
    background: var(--background_three, #f8f9fa);
    padding: 20px 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Modern, subtle shadow */
    
    /* Initial State (Hidden) */
    opacity: 0;
    /* Move 50% left to center, and 150% down to hide below the bottom edge */
    transform: translate(-50%, 150%);
    
    /* Transition */
    /* Use a cubic-bezier for a snappier, more modern slide effect */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.4s ease-in;
}

.popup.active {
    opacity: 1;
    transform: translate(-50%, 0); /* Slide up to its final position */
}


/* =================================================================
   2. FULL-SCREEN MODAL OVERLAY (.popup-overlay)
   ================================================================= */
.popup-overlay {
    /* Critical Overlay Settings */
    /* NOTE: JavaScript must remove/add the Bootstrap 'd-none' class to show/hide this. */
    position: fixed;
    z-index: 10600; /* Higher than Bootstrap's default modal/navbar */
    inset: 0; /* Shorthand for top, right, bottom, left: 0 */
    width: 100%;
    height: 100%;
    
    /* Centering with Flexbox */
    display: flex; 
    justify-content: center;
    align-items: center;
    
    /* Background and Transition */
    background-color: rgba(0, 0, 0, 0.75); /* Darker for better focus */
    transition: background-color 0.3s ease-in-out; 
}

/* =================================================================
   3. MODAL CONTENT BOX (.popup-content)
   ================================================================= */
.popup-content {
    background-color: #fff;
    padding: 30px; /* Increased padding */
    border-radius: var(--border_radius_large, 10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    position: relative;
    max-width: 400px; /* Focused, comfortable reading width */
    width: 95%; 
    max-height: 90vh; /* Prevents overflow on short screens */
    overflow-y: auto; /* Allows scrolling inside if content is long */
    
    /* Entrance Animation */
    animation: fadeInScale 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Close Button (Assuming Bootstrap's .btn-close is used in HTML) */
.btn-close.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    font-size: 1rem;
    color: #999;
    opacity: 0.7;
    padding: 0.5rem; /* Large clickable area */
    transition: opacity 0.2s ease-in-out;
}
.btn-close.close-button:hover {
    opacity: 1;
}

/* Text and Headings */
.popup-content h2 {
    color: var(--text_color_three, #1e3a8a);
    margin-top:15px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.75rem; /* Larger, more impactful title */
    font-weight: 700;
}

.popup-content p {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* =================================================================
   4. FORM ELEMENTS
   ================================================================= */

/* Input Field */
.popup-content input[type="email"] {
    width: 100%;
    padding: 12px; 
    margin-bottom: 15px;
    border: 1px solid var(--border_color, #ddd);
    border-radius: 6px; 
    font-size: 16px;
    transition: border-color var(--transition_fast, 0.2s) ease-in-out, 
                box-shadow var(--transition_fast, 0.2s) ease-in-out;
}

.popup-content input[type="email"]:focus {
    border-color: var(--primary_color, #007bff);
    box-shadow: var(--focus_shadow, 0 0 0 0.25rem rgba(0, 123, 255, 0.25));
    outline: none;
}

/* Submit Button */
.popup-content button[type="submit"] {
    background-color: var(--primary_color, #007bff);
    color: var(--text_color_two, #fff);
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600; 
    width: 100%;
    transition: background-color var(--transition_fast, 0.2s) ease-in-out;
}

.popup-content button[type="submit"]:hover,
.popup-content button[type="submit"]:focus {
    background-color: var(--primary_hover_color, #0056b3);
}

/* Form Message Display */
#formMessage {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* =================================================================
   5. KEYFRAMES
   ================================================================= */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Featured card subtle background & radius */
.featured-card {
    background: #ffffff;
    border-radius: 0.6rem;
}

/* Make featured image fit nicely and not overflow */
.featured-image {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Hover for older post cards (Kept from previous version, but applied to the entire card) */
.blog-card-hover {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.blog-card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* === Media Queries === */
/* Tablets and up */
@media (min-width: 768px) {
    
    .menu-bar .fa {
        display: none;
    }
    .myrow {
       flex-direction: row; 
    }
}

/* Laptops and up */
@media (min-width: 992px) {
    .logo {
        height: 40px;
    }
    .featured-img {
        max-height: 360px;
    }
    .myrow {
       flex-direction: row; 
    }
    .mycontainer {
        display: grid;
        grid-template-areas:
            "content"
            "footer";
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        margin-left: 250px;
        margin-top: 70px;
        min-height: 100vh;
        background: var(--background_three);
    }
    .myheader {
        position: fixed;
        top: 0;
        left: 250px;
        right: 0;
        height: 70px;
        background-color: #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ccc;
        padding: 0 1.5rem;
        z-index: 3000;
        width: auto;
    }
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        opacity: 1;
        width: 250px;
        height: 100%;
        box-shadow: none;
        background-color: #e0e0e0;
        padding: 20px;
        overflow-y: auto;
        z-index: 2000;
    }
    .desktop-menu .fa {
        display: block;
        color: #555;
        padding: 8px;
        font-size: 22px;
        border-radius: var(--border_radius_small);
        cursor: pointer;
        transition: color var(--transition_fast);
    }
    .mysidebar ul {
        list-style: none;
        padding: 0;
    }
    .mysidebar li {
        margin-bottom: 10px;
    }
    .mysidebar a {
        text-decoration: none;
        color: #666;
        font-weight: normal;
        display: block;
        padding: 5px;
        transition: color var(--transition_fast);
    }
    .mysidebar a:hover,
    .mysidebar a:focus {
        color: var(--background_one);
    }
    .mysidebar li a {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .mycontent {
        grid-area: content;
        background-color: var(--background_three);
        margin-top: 0;
    }
    .myfooter {
        grid-area: footer;
        background-color: #f0f0f0;
        padding: 20px;
        text-align: center;
        border-top: 1px solid #ccc;
    }
}

/* Desktops and up */
@media (min-width: 1200px) {
    .logo {
        height: 40px;
    }
    .myrow {
       flex-direction: row; 
    }
    .left-group .fa {
        display: none;
    }
    
    .black-transparent-div p {
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 1.6;
        margin: 0 0 1rem 0;
        max-width: 800px;
    }
    .mycontainer {
        display: grid;
        grid-template-areas:
            "content"
            "footer";
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        margin-left: 250px;
        margin-top: 70px;
        min-height: 100vh;
        background: var(--background_three);
    }
    .myheader {
        position: fixed;
        top: 0;
        left: 250px;
        right: 0;
        height: 70px;
        background-color: #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ccc;
        padding: 0 1.5rem;
        z-index: 3000;
        width: auto;
    }
    .mysidebar {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        opacity: 1;
        width: 250px;
        height: 100%;
        background-color: #e0e0e0;
        box-shadow: none;
        padding: 20px;
        border-radius: 0;
        overflow-y: auto;
        z-index: 2000;
    }
    .mysidebar .fa-solid {
        display: block;
        margin-right: 10px;
    }
    .desktop-menu .fa {
        display: block;
        color: #555;
        padding: 8px;
        font-size: 22px;
        border-radius: var(--border_radius_small);
        cursor: pointer;
        transition: color var(--transition_fast);
    }
    .mysidebar ul {
        list-style: none;
        padding: 0;
    }
    .mysidebar li {
        margin-bottom: 10px;
    }
    .mysidebar a:hover,
    .mysidebar a:focus {
        color:#fff;
    }
    .mysidebar a {
        text-decoration: none;
        color: #555;
        font-weight: 600;
        display: block;
        padding: 5px;
        transition: color var(--transition_fast);
    }
    .mysidebar li a {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .mycontent {
        background-color: var(--background_three);
        padding: 0;
        grid-area: content;
        margin-top: 0;
    }
    .myfooter {
        grid-area: footer;
        background-color: #f0f0f0;
        padding: 20px;
        text-align: center;
        border-top: 1px solid #ccc;
    }
   
}
