/* ========== NEW NAVIGATION STYLES ========== */

/* Header Icon Buttons */
.header-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dots-btn {
    flex-direction: row;
    gap: 4px;
}

.dots-btn span {
    display: block;
    width: 5px;
    height: 5px;
    background: #2c3e50;
    border-radius: 50%;
}

/* Slide Menus */
.slide-menu {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 300px;
    background: white;
    z-index: 3000;
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.left-menu {
    left: 0;
    transform: translateX(-100%);
}

.right-menu {
    right: 0;
    transform: translateX(100%);
}

.slide-menu.active {
    transform: translateX(0);
}

.slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.slide-menu-header h2 {
    font-size: 1.2rem;
    margin: 0;
}

.slide-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
}

.slide-menu-nav {
    padding: 1rem 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #374151;
    transition: background 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
}

.menu-item:hover {
    background: #f3f4f6;
}

.menu-icon {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* User Profile Section in Right Menu */
.user-profile-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.user-email {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Theme Toggle */
.theme-toggle {
    justify-content: flex-start;
}

.toggle-switch {
    margin-left: auto;
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: #4a90e2;
}

input:checked+.toggle-slider:before {
    transform: translateX(24px);
}

.logout-item {
    color: #ef4444;
}

.login-item {
    color: #4a90e2;
    font-weight: 600;
}

.admin-item {
    color: #8b5cf6;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
}

.admin-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
}

/* ========== HERO CAROUSEL STYLES ========== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.slide-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 2;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #4a90e2;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: white;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .hero-carousel {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Legacy hero-banner (kept for fallback) */
.hero-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Main Menu Bar (Premium Stylished) */
.main-menu-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin: -3rem auto 3rem auto;
    max-width: 1000px;
    position: relative;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 75px;
    max-width: 90px;
    padding: 0.6rem 0.4rem;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    flex: 0 0 auto;
}

.menu-tab:hover {
    color: #4a90e2;
    transform: translateY(-3px);
    background: rgba(74, 144, 226, 0.08);
}

.tab-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    display: block;
    transition: transform 0.3s ease;
}

.menu-tab:hover .tab-icon {
    transform: scale(1.1);
}

.tab-text {
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    color: #64748b;
    transition: color 0.3s ease;
    text-align: center;
}

.menu-tab:hover .tab-text {
    color: #4a90e2;
}

@media (max-width: 992px) {
    .main-menu-bar {
        margin: -2rem 1rem 2rem 1rem;
        padding: 1rem;
        gap: 0.5rem;
        border-radius: 16px;
    }

    .menu-tab {
        min-width: 60px;
        max-width: 70px;
        padding: 0.5rem 0.3rem;
    }

    .tab-icon {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .tab-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .main-menu-bar {
        margin: -1.5rem 0.5rem 1.5rem 0.5rem;
        padding: 0.8rem;
        gap: 0.3rem;
    }

    .menu-tab {
        min-width: 55px;
        max-width: 65px;
        padding: 0.4rem 0.2rem;
    }

    .tab-icon {
        font-size: 1.2rem;
    }

    .tab-text {
        font-size: 0.55rem;
    }
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.action-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
}

.action-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.action-btn.secondary {
    background: white;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.action-btn.secondary:hover {
    background: #4a90e2;
    color: white;
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.content-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-card h4 {
    margin: 0 0 0.5rem 0;
}

.content-card p {
    margin: 0;
    color: #6b7280;
}

.video-card {
    text-align: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        flex-direction: column;
        align-items: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

/* Intro & Book Grids */
.intro-highlight {
    margin: 2rem 0;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #4a90e2;
    padding: 2rem;
    border-radius: 12px;
}

.highlight-box h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-box p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.intro-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.intro-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.intro-card p {
    line-height: 1.6;
    color: #4b5563;
    text-align: left;
}

.intro-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
}

.intro-cta p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4a90e2 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.book-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.book-card:hover {
    transform: translateY(-5px);
}

.book-cover {
    width: 80px;
    height: 110px;
    background: linear-gradient(135deg, #4a90e2, #2563eb);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.book-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.book-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.8rem;
}

.book-tag {
    display: inline-block;
    padding: 2px 10px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Language Selector Styles */
.language-selector {
    margin-left: auto;
    margin-right: 15px;
}

#langSelect {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
}

#langSelect:hover {
    border-color: #4a90e2;
    background-color: #f3f4f6;
}

body.dark-mode #langSelect {
    background-color: #1f2937;
    color: white;
    border-color: #374151;
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    .language-selector {
        margin-right: 5px;
    }

    #langSelect {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* AI Chat Modal Styles */
.chat-modal {
    background: white;
    width: 90%;
    max-width: 500px;
    height: 600px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.chat-header {
    padding: 1.5rem;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
}

.msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.msg.mentor {
    align-self: flex-start;
    background: white;
    color: var(--text);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 2px;
}

.msg.user {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 2px;
}

.chat-footer {
    padding: 1.2rem;
    display: flex;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    outline: none;
}

.chat-footer button {
    padding: 0 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

/* ============================================
   Content Modal (Full Page)
   ============================================ */
.content-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
}

.content-modal-overlay.active {
    display: flex;
}

.content-modal {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 800px;
    max-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px 24px 0 0;
}

.content-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #1e293b;
}

.content-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
}

.content-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

.content-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-content-inner {
    line-height: 1.8;
    color: #334155;
}

.modal-content-inner p {
    margin-bottom: 1rem;
}

.modal-content-inner .highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #4a90e2;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.modal-content-inner .highlight-box p {
    margin: 0;
    color: #1e40af;
}

.modal-content-inner .intro-paragraph {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.content-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: #64748b;
    font-size: 1.1rem;
}

.content-placeholder,
.content-error {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

.content-error {
    color: #dc2626;
}

@media (max-width: 768px) {
    .content-modal-overlay {
        padding: 1rem;
    }

    .content-modal {
        max-height: calc(100vh - 2rem);
        border-radius: 16px;
    }

    .content-modal-header {
        padding: 1rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }

    .content-modal-header h2 {
        font-size: 1.2rem;
    }

    .content-modal-body {
        padding: 1.5rem;
    }
}

button.menu-tab {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
/* Subscription Modal Styles */
.subscription-modal {
    max-width: 500px !important;
}

.subscription-hero {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.sub-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #4a90e2;
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.sub-price {
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
}

.subscription-benefits {
    margin-bottom: 2rem;
}

.subscription-benefits h4 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.subscription-benefits ul {
    list-style: none;
    padding: 0;
}

.subscription-benefits li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscription-cta {
    text-align: center;
}

.subscribe-btn {
    width: 100%;
    padding: 1.2rem;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.subscribe-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
}

.sub-note {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 1rem;
}

/* Subscribed View Styles */
.subscription-status {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    margin-bottom: 2rem;
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.status-info {
    color: #166534;
    margin-top: 0.5rem;
}

.subscription-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.manage-btn, .cancel-btn {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.manage-btn {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.manage-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.cancel-btn {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 0.9rem;
}

.cancel-btn:hover {
    text-decoration: underline;
}
