.font_size_custom_13 {
    font-size: 13px !important;
}

.blog_grid_area .welcome_title h3 {
    font-size: 20px;
    font-weight: bold;
    padding-top: 12px;
    padding-bottom: 0px !important;
    text-align: left;
}

#leftNav {
    transition: width 0.3s ease, padding 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

    #leftNav.collapsed {
        width: 0;
        padding: 0;
        visibility: hidden;
        position: absolute;
        overflow: hidden;
    }

/* Mobile-specific styles */
@media (min-width: 320px) and (max-width: 768px) {
    #leftNav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 0;
        background: #ffffff;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        visibility: hidden;
        overflow: hidden;
    }

        #leftNav.expanded {
            position: fixed;
            width: 97%;
            visibility: visible;
            padding: 1rem;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            max-height: 100vh;
        }

    #rightNav {
        width: 100%;
        position: relative;
        z-index: 1;
    }
}

/* Close button for overlay menu */
.close-overlay-btn {
    background: transparent;
    border: none;
    font-size: 35px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 5px;
}

    .close-overlay-btn:hover {
        color: #900000;
    }

.mt-10 {
    margin-top: 10px;
}

.section-container {
    position: relative;
}

.sticky-button {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background-color: white;
    padding: 10px 0;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.search-result {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-title {
    font-size: 1em;
    margin: 0;
}

.saved-searches {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-top: 20px;
}

    .saved-searches h2 {
        font-size: 1.2em;
        margin-bottom: 15px;
        color: #333;
    }

.saved-searches-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
}

    .saved-searches-list li {
        padding: 10px;
        background-color: #ffffff;
        border-radius: 5px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .saved-searches-list .btn {
        margin-left: auto;
    }

.search-title {
    font-size: 1em;
    color: #333;
    margin: 0;
    width: 85%;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    padding: 8px 12px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }
