.body {
    background: #f8fafc !important;
}

.chat-container {
    max-width: 350px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-height: 70vh;
}

/* Mobile-first compact design */
@media (max-width: 480px) {
    .chat-container {
        max-width: 320px;
        padding: 0.8rem;
        margin: 0.5rem auto;
    }
}

@media (max-width: 400px) {
    .chat-container {
        max-width: 300px;
        padding: 0.6rem;
        margin: 0.3rem auto;
    }
}

/* Desktop responsive design */
@media (min-width: 768px) {
    .chat-container {
        max-width: 400px;
        padding: 1rem;
    }
}

@media (min-width: 1024px) {
    .chat-container {
        max-width: 350px;
        padding: 0.8rem;
    }
}

@media (min-width: 1440px) {
    .chat-container {
        max-width: 320px;
        padding: 0.6rem;
    }
}

.chat-topic-title {
    text-align: center;
    color: #1E5359;
    margin-bottom: 1.5rem;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    max-height: 450px;
    overflow-y: auto;
    padding: 0.3rem;
}

@media (max-width: 480px) {
    .chat-messages {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
        max-height: 400px;
        padding: 0.2rem;
    }
}

.chat-message {
    display: flex;
    align-items: flex-start;
    border-radius: 0.6rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    padding: 0.6rem;
    margin-bottom: 0.4rem;
    gap: 0.6rem;
    border: 1px solid #f1f5f9;
    background-color: #f8f9fa;
    max-width: 85%;
}

.chat-message-own {
    margin-left: auto;
    background-color: #dcf8c6 !important;
    border-color: #c8e6c9;
}

@media (max-width: 480px) {
    .chat-message {
        padding: 0.5rem;
        margin-bottom: 0.3rem;
        gap: 0.5rem;
        border-radius: 0.5rem;
        max-width: 90%;
    }
    
    .chat-message-own {
        max-width: 85%;
    }
}

.chat-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .chat-avatar img {
        width: 28px;
        height: 28px;
    }
}

.chat-message-content {
    flex: 1;
}

.chat-user {
    font-weight: 600;
    color: #1E5359;
    margin-bottom: 0.05rem;
    font-size: 0.85rem;
}

.chat-time {
    color: #64748b;
    font-size: 0.7rem;
    margin-left: 0.4rem;
}

.chat-text {
    margin-top: 0.15rem;
    word-break: break-word;
    color: #334155;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Chat media styles - copied from chat.html */
.chat-attachments {
    margin-top: 0.5rem;
    border-radius: 12px;
    overflow: hidden;
    max-width: 106px;
}

.chat-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 480px) {
    .chat-user {
        font-size: 0.8rem;
        margin-bottom: 0.03rem;
    }
    
    .chat-time {
        font-size: 0.65rem;
        margin-left: 0.3rem;
    }
    
    .chat-text {
        font-size: 0.8rem;
        line-height: 1.25;
        margin-top: 0.1rem;
    }
    
    .chat-attachments {
        margin-top: 0.3rem;
        max-width: 90px;
    }
}

.chat-form {
    display: flex;
    gap: 0.4rem;
    align-items: flex-end;
    padding: 0.4rem;
    background: #f8f9fa;
    border-radius: 0.6rem;
    border: 1px solid #e2e8f0;
}

.chat-form textarea {
    flex: 1;
    border-radius: 0.4rem;
    border: 1px solid #e2e8f0;
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    resize: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 36px;
    max-height: 80px;
}

@media (max-width: 480px) {
    .chat-form {
        padding: 0.3rem;
        gap: 0.3rem;
        border-radius: 0.5rem;
    }
    
    .chat-form textarea {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
        min-height: 32px;
        max-height: 70px;
        border-radius: 0.3rem;
    }
}

.chat-form textarea:focus {
    outline: none;
    border-color: #1E5359;
    box-shadow: 0 0 0 3px rgba(30, 83, 89, 0.1);
}

.chat-form button {
    background: linear-gradient(135deg, #1E5359 0%, #2a6b72 100%);
    color: #fff;
    border: none;
    border-radius: 0.4rem;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 50px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(30, 83, 89, 0.2);
}

.chat-form button:hover {
    background: linear-gradient(135deg, #2a6b72 0%, #1E5359 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 83, 89, 0.3);
}

.chat-login-prompt {
    text-align: center;
    margin-top: 1.5rem;
}

.user-list-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px rgba(166, 82, 63, 0.08);
    padding: 2.5rem 2rem;
}

.user-list-title {
    text-align: center;
    color: #1E5359;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.user-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.user-card {
    background: #f7fae0;
    border-radius: 1rem;
    box-shadow: 0 1px 4px rgba(166, 82, 63, 0.08);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.user-card:hover {
    box-shadow: 0 4px 16px rgba(166, 82, 63, 0.13);
}

.user-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(166, 82, 63, 0.10);
    margin-bottom: 1rem;
}

.user-info {
    text-align: center;
}

.user-name {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.user-username {
    color: #888;
    font-size: 0.98rem;
}

.user-list-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.forum-adverts-section {
    margin: 2.5rem auto 1.5rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
}

.advert-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(140,55,48,0.10);
    margin: 0;
    width: 340px;
    max-width: 100%;
    text-align: left;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
}

.advert-card:hover {
    box-shadow: 0 6px 24px rgba(140,55,48,0.16);
    transform: translateY(-2px) scale(1.01);
}

.advert-img {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: #f5f5f5;
}

.advert-title {
    font-weight: 700;
    color: #1E5359;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .forum-adverts-section {
        flex-direction: column;
        gap: 1.2rem;
        max-width: 98vw;
        padding: 0 0.5rem;
    }
    .advert-card {
        width: 100%;
        max-width: 98vw;
    }
}

.forum-adverts-slider {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto 1.5rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(140,55,48,0.10);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 220px;
    transition: box-shadow 0.2s;
}

.forum-advert-slide {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.5s;
}

.forum-advert-img {
    width: 100%;
    max-width: 350px;
    max-height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: #f5f5f5;
}

.forum-advert-title {
    font-weight: 700;
    color: #1E5359;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    letter-spacing: 0.01em;
}

.forum-advert-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.forum-advert-nav button {
    background: #1E5359;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: all;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.forum-advert-nav button:hover {
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.forum-advert-bar {
    width: 100%;
    max-width: 520px;
    margin: 2rem auto 2rem auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 120px;
    max-height: 180px;
    justify-content: center;
    background: #f7fae0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.forum-advert-bg-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    max-height: 180px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    position: relative;
    border-radius: 0;
    transition: filter 0.2s, transform 0.2s;
    filter: brightness(0.95);
    overflow: hidden;
    transform: scale(0.97);
}

.forum-advert-bg-link:hover {
    filter: brightness(0.85);
    transform: scale(1.01);
}

.forum-advert-title-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: rgba(0,0,0,0.45);
    padding: 0.7rem 2rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    max-width: 90vw;
    white-space: pre-line;
}

@media (max-width: 600px) {
    .forum-advert-bar {
        max-width: 98vw;
    }
    .forum-advert-bg-link {
        min-height: 90px;
        max-height: 120px;
    }
}

.forum-main-container {
    max-width: 1000px;
    margin: 0 auto 2rem auto;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.forum-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.forum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E5359 0%, #2a6b72 50%, #34d399 100%);
}

.forum-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #e2e8f0;
}

.forum-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.forum-header-title {
    color: white !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Override gradient text when inside banner */
.forum-header-banner .forum-header-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
    color: white !important;
}

.forum-card-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.forum-card-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.forum-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.forum-card-meta b {
    color: #1E5359;
    font-weight: 700;
}

.btn-create-forum, .btn-view, .btn-outline-manage, .btn-outline-leave, .btn-outline-join {
    border-radius: 0.75rem !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-create-forum {
    background: linear-gradient(135deg, #1E5359 0%, #2a6b72 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(30, 83, 89, 0.3);
}

.btn-create-forum:hover {
    background: linear-gradient(135deg, #2a6b72 0%, #1E5359 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 83, 89, 0.4);
}

.btn-view {
    background: #1e5959 !important;
    color: #fff !important;
    border: 2px solid #1e5959 !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 2px 8px rgba(30, 89, 89, 0.2);
}

.btn-view:hover {
    background: #1a4f4f !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 89, 89, 0.4);
    border-color: #1a4f4f !important;
}

.btn-outline-manage {
    background: #fff !important;
    color: #F2DAAC !important;
    border: 2px solid #F2DAAC !important;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.btn-outline-manage:hover {
    background: #F2DAAC !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-outline-leave {
    background: #fff !important;
    color: #ef4444 !important;
    border: 2px solid #ef4444 !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.btn-outline-leave:hover {
    background: #ef4444 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-outline-join {
    background: #fff !important;
    color: #F2DAAC !important;
    border: 2px solid #F2DAAC !important;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.btn-outline-join:hover {
    background: #F2DAAC !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.forum-welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.forum-username {
    color: #1E5359;
    font-weight: 700;
    margin-left: 0.5rem;
}

.forum-empty-msg {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #64748b;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    font-size: 1.1rem;
}

.forum-section {
    margin-bottom: 3rem;
}

.forum-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    position: relative;
    padding-bottom: 0.5rem;
}

.forum-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1E5359 0%, #2a6b72 100%);
    border-radius: 2px;
}

.forum-header-banner {
    background: linear-gradient(135deg, #1E5359 0%, #2a6b72 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.forum-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.forum-back-btn {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.forum-back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-50%) translateX(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .forum-header-banner, .forum-main-container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .forum-header-title {
        font-size: 2rem;
    }

    .forum-card {
        padding: 1.5rem;
    }

    .forum-main-container {
        padding: 2rem 1.5rem;
    }

    .forum-back-btn {
        left: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .forum-header-banner {
        padding: 2rem 1rem;
        text-align: left;
    }

    .forum-header-title {
        font-size: 1.75rem;
        margin-top: 1rem;
        text-align: left;
    }

    .forum-back-btn {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        display: inline-block;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .forum-main-container {
        padding: 1.5rem 1rem;
        margin: 1rem;
        border-radius: 1rem;
    }

    .forum-card {
        padding: 1.5rem 1rem;
    }

    .forum-section-title {
        font-size: 1.25rem;
    }

    .forum-card-title {
        font-size: 1.2rem;
    }

    .forum-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .d-flex.gap-2.justify-content-end {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .btn-create-forum, .btn-view, .btn-outline-manage, .btn-outline-leave, .btn-outline-join {
        width: 100%;
        justify-content: center;
    }
}

.forum-card-meta span::before {
    content: '•';
    color: #1E5359;
    font-weight: bold;
    margin-right: 0.3rem;
}

.forum-card-meta span:first-child::before {
    content: '📊';
    margin-right: 0.3rem;
}

.forum-card-meta span:last-child::before {
    content: '💬';
    margin-right: 0.3rem;
}

.btn-create-forum i {
    font-size: 0.9rem;
}

* {
    scroll-behavior: smooth;
}

.forum-card, .btn-create-forum, .btn-view, .btn-outline-manage, .btn-outline-leave, .btn-outline-join {
    will-change: transform;
}

/* Forum topic list styles */
.forum-topic-list {
    margin-top: 1.2rem;
}

.forum-topic-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    transition: background 0.2s;
}

.forum-topic-item:hover {
    background: #f8f9fb;
}

.forum-topic-link {
    color: #1E535E;
    font-weight: bold;
    font-size: 1.15rem;
    text-decoration: underline;
    transition: color 0.2s;
    word-break: break-word;
}

.forum-topic-link:hover {
    color: #1E535E;
    text-decoration: underline;
}

.forum-topic-meta {
    color: #888;
    font-size: 0.98rem;
    margin-top: 0.2rem;
}

.forum-topic-stats {
    text-align: right;
    color: #1E535E;
    font-size: 0.98rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.forum-topic-last {
    color: #888;
    font-size: 0.92rem;
}

@media (max-width: 600px) {
    .forum-topic-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.7rem 0;
    }
    .forum-topic-link {
        font-size: 1rem;
    }
    .forum-topic-stats {
        text-align: left;
        font-size: 0.95rem;
    }
}

/* Forum card image styles */
.forum-card-image {
    margin: -1.5rem -1.5rem 0 -1.5rem;
    border-radius: 1.2rem 1.2rem 0 0;
    overflow: hidden;
}

.forum-card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.forum-card:hover .forum-card-image img {
    transform: scale(1.05);
}







 /* Simple Promo Banner */
.promo-banner-container {
        width: 90%;
        max-width: 800px;
        margin: 0.5rem auto;
        background: #53939a;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
}

.promo-banner-slide {
        width: 100%;
        transition: all 0.5s ease;
    }

.promo-banner-link {
        display: block;
        text-decoration: none;
        color: inherit;
        transition: all 0.2s ease;
}

.promo-banner-link:hover {
        background: #53939a;
        text-decoration: none;
        color: inherit;
}

.promo-banner-content {
        margin-top: 50px;
        padding: 15px 20px;
        text-align: center;
        font-size: 14px;
        color: #ffffff !important;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 90px;
}

.promo-banner-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 8px;
        right: 8px;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
}

.promo-nav-btn {
        width: 24px;
        height: 48px;
        background: #53939a;
        border: none;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: all;
        transition: all 0.2s ease;
        color: white;
        font-size: 14px;
        font-weight: bold;
}

.promo-nav-btn:hover {
        background: #53939a;
        transform: scale(1.1);
}

    /* Mobile Responsive */
@media (max-width: 768px) {
    .promo-banner-container {
            margin: 0.5rem 1rem;
    }
        
    .promo-banner-content {
            padding: 10px 15px;
            font-size: 13px;
            color: #ffffff !important;
        }
        

    .promo-nav-btn {
            width: 20px;
            height: 40px;
            font-size: 12px;
        } 
    } 

/* Custom Pagination Styles - Override Bootstrap defaults */
.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.pagination .page-item {
    margin: 0 0.125rem;
}

.pagination .page-link {
    color: #1e5959;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    color: #ffffff;
    background-color: #1e5959;
    border-color: #1e5959;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(30, 89, 89, 0.2);
}

.pagination .page-item.active .page-link {
    background-color: #1e5959;
    border-color: #1e5959;
    color: #ffffff;
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #ffffff;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    color: #6c757d;
    background-color: #ffffff;
    border-color: #dee2e6;
    transform: none;
    box-shadow: none;
}

/* Pagination info text styling */
.pagination-info {
    color: #6c757d;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1rem;
}

/* Mobile responsive pagination */
@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;
        gap: 0.125rem;
    }
    
    .pagination .page-link {
        padding: 0.375rem 0.5rem;
        min-width: 36px;
        font-size: 0.875rem;
    }
} 
