.sidebar {
    height: 88vh;
    width: 0;
    position: fixed;
    z-index: 1001; /* Above the overlay */
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    display: block;
}

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Below the sidebar but above everything else */
}

/* Styles for links inside the sidebar */
.sidebar a {
    padding: 5px 15px;
    text-decoration: none;
    font-size: 15px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

    .sidebar a:hover {
        color: #f1f1f1;
    }

.sidebar .close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 36px;
}

.list-unstyled li a {
    color: black;
}

/* Footer Area Styles */
.footer-area {
    background-color: #900000;
    color: white;
    padding: 20px 0;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    margin-left: 2px;
}

.logo-size {
    max-width: 700px; /* Adjusted size */
}

.footer-text {
    margin: 0;
    font-size: 14px;
    color: white;
}

.ml-2 {
    margin-left: 2px;
}

.ml-10 {
    margin-left: 10px;
}

.mb-0 {
    margin-bottom: 0;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center;
}

.text-capitalize {
    text-transform: capitalize;
}

.app-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

    .popup-content h2 {
        margin-bottom: 10px;
        font-size: 1.5em;
    }

    .popup-content p {
        margin-bottom: 20px;
        font-size: 1.1em;
    }

    .popup-content ul {
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: space-around;
        margin: 20px 0;
    }

    .popup-content li {
        flex: 1;
    }

.app-btn {
    display: inline-block;
    background-color: #4CAF50; /* Google Play green color */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
}

    .app-btn:hover {
        background-color: #45a049;
    }

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #000;
    font-size: 1.4em;
    cursor: pointer;
}

/* Show the popup on mobile screens */
@media (max-width: 768px) {
    .app-popup {
        display: flex;
    }
}

.app-footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 20;
}

.footer-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
    padding: 5px;
}

.footer-link {
    text-decoration: none;
    color: #8a8a8a;
    font-size: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .footer-link.active {
        color: #d9534f;
    }

    .footer-link i {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .footer-link span {
        font-size: 10px;
        margin-top: 3px;
    }

    .footer-link .icon {
        width: 24px;
        height: 24px;
        background-size: cover;
    }

.icon-home {
    background-image: url('../img/home-icon.png');
}

.icon-match {
    background-image: url('../img/match-icon.png');
}

.icon-request {
    background-image: url('../img/request-icon.png');
}

.icon-chat {
    background-image: url('../img/chat-icon.png');
}

.icon-profile {
    background-image: url('../img/profile-icon.png');
}

.icon-profile-options {
    background-image: url('../img/option.png');
}

/* Specific to the social icons list */
.copyright_social ul {
    list-style-type: none;
    padding: 0;
    margin: 6.5px;
}

.copyright_social li {
    display: inline-block;
    margin: 0 5px;
}

.copyright_social .social-icons {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url('../img/soul-icon/social-icons.png');
    background-size: 120px 40px;
    background-repeat: no-repeat;
}

.copyright_social .facebook {
    background-position: 0 0;
}

.copyright_social .instagram {
    background-position: -40px 0;
}

.copyright_social .x {
    background-position: -80px 0;
}



.login-form-username-password {
    margin-bottom: 30px !important;
    padding: 6px 25px !important;
    font-size: 16px !important;
    height: 46px !important;
}


.change-text-style {
    font-style: italic;
    font-weight: bold;
}