/* Account Page Styles - Content Detail Style */

.account-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
    min-height: 100vh;
}

/* Account Header - Hero Style */
.account-header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 138, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.account-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--fenogram-yellow);
}

.account-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 138, 0.2), rgba(255, 255, 138, 0.05));
    border: 3px solid var(--fenogram-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(255, 255, 138, 0.2);
}

.account-avatar svg {
    stroke: var(--fenogram-yellow);
    width: 50px;
    height: 50px;
}

.account-info {
    flex: 1;
}

.account-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--fenogram-white);
    letter-spacing: -0.02em;
}

.account-email {
    font-size: 1rem;
    font-weight: 200;
    color: var(--fenogram-text-gray);
    margin-bottom: 12px;
}

.account-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 138, 0.1);
    border: 1px solid rgba(255, 255, 138, 0.3);
    border-radius: 20px;
    color: var(--fenogram-yellow);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Account Tabs - Content Detail Style */
.account-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    overflow: hidden;
}

.account-tab {
    padding: 18px 28px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--fenogram-text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.account-tab::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.account-tab:last-child::after {
    display: none;
}

.account-tab svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.account-tab:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--fenogram-white);
}

.account-tab:hover svg {
    opacity: 0.8;
}

.account-tab.active {
    background-color: rgba(255, 255, 138, 0.08);
    border-bottom-color: var(--fenogram-yellow);
    color: var(--fenogram-yellow);
}

.account-tab.active svg {
    opacity: 1;
}

/* Tab Content - Glass Effect */
.tab-content {
    display: none;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 12px 12px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.active {
    display: block;
}

/* Settings Group */
.settings-group {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.settings-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tab-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--fenogram-white);
    position: relative;
    padding-left: 16px;
}

.tab-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--fenogram-yellow);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--fenogram-white);
}

/* Account Section */
.account-section {
    margin-bottom: 36px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fenogram-text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-input {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--fenogram-white);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.2s ease;
}

.account-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--fenogram-yellow);
    box-shadow: 0 0 0 3px rgba(255, 255, 138, 0.1);
}

.account-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Buttons */
.account-btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 138, 0.15), rgba(255, 255, 138, 0.08));
    border: 1px solid rgba(255, 255, 138, 0.3);
    border-radius: 8px;
    color: var(--fenogram-yellow);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.account-btn-primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 138, 0.25), rgba(255, 255, 138, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 138, 0.15);
}

.account-btn-secondary {
    padding: 14px 28px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--fenogram-white);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    margin-right: 12px;
}

.account-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.account-btn-danger {
    padding: 14px 28px;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
    font-family: 'Poppins', sans-serif;
}

.account-btn-danger:hover {
    background-color: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
}

/* Subscription Card */
.subscription-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--fenogram-yellow);
    padding: 20px;
    margin-bottom: 24px;
}

.subscription-status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-icon svg {
    width: 20px;
    height: 20px;
}

.status-icon svg {
    stroke: #4caf50;
}

.status-info {
    flex: 1;
}

.status-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--fenogram-white);
}

.status-info p {
    font-size: 0.85rem;
    font-weight: 200;
    color: #4caf50;
}

.status-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fenogram-yellow);
}

.subscription-details {
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.detail-row span {
    color: var(--fenogram-text-gray);
    font-weight: 200;
}

.detail-row strong {
    color: var(--fenogram-white);
    font-weight: 600;
}

.subscription-actions {
    display: flex;
    gap: 12px;
}

/* Payment History */
.payment-history {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-item {
    display: grid;
    grid-template-columns: 120px 1fr 100px 80px;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

.payment-date {
    color: var(--fenogram-text-gray);
    font-weight: 200;
}

.payment-desc {
    color: var(--fenogram-white);
    font-weight: 400;
}

.payment-amount {
    color: var(--fenogram-yellow);
    font-weight: 700;
    text-align: right;
}

.payment-invoice {
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--fenogram-white);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.payment-invoice:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Watchlist Grid */
.watchlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.watchlist-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 2/3;
}

.watchlist-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.watchlist-item:hover img {
    transform: scale(1.05);
}

.watchlist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.watchlist-item:hover .watchlist-overlay {
    opacity: 1;
}

.watchlist-overlay h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fenogram-white);
    margin-bottom: 8px;
}

.watchlist-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s;
}

.watchlist-item:hover .watchlist-remove {
    opacity: 1;
}

.watchlist-remove:hover {
    background-color: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.watchlist-remove svg {
    stroke: white;
}

/* Settings */
.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--fenogram-white);
    margin-bottom: 4px;
}

.setting-info p {
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--fenogram-text-gray);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    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: rgba(255, 255, 255, 0.1);
    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%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--fenogram-yellow);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
    background-color: var(--fenogram-black);
}

/* Responsive */
@media (max-width: 768px) {
    .account-container {
        padding: 90px 16px 30px;
    }
    
    .account-header {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .account-avatar {
        width: 60px;
        height: 60px;
    }
    
    .account-avatar svg {
        width: 32px;
        height: 32px;
    }
    
    .account-name {
        font-size: 1.3rem;
    }
    
    .account-email {
        font-size: 0.8rem;
    }
    
    .account-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .account-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .account-tab {
        white-space: nowrap;
        padding: 10px 18px;
        padding-left: 13px;
        font-size: 0.85rem;
    }
    
    .account-tab svg {
        width: 16px;
        height: 16px;
    }
    
    .tab-content {
        padding: 18px;
    }
    
    .tab-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .subscription-actions {
        flex-direction: column;
    }
    
    .payment-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .watchlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* Order List */
.order-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--fenogram-yellow);
    padding: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-id {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--fenogram-white);
}

.order-status {
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
}

.status-completed {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.order-date {
    font-size: 0.85rem;
    color: var(--fenogram-text-gray);
    margin-bottom: 12px;
}

.order-products {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.order-product {
    font-size: 0.9rem;
    color: var(--fenogram-white);
    font-weight: 500;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.order-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fenogram-yellow);
}

.order-detail-btn {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--fenogram-white);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.order-detail-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Invoice List */
.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.invoice-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.invoice-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 138, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.invoice-icon svg {
    stroke: var(--fenogram-yellow);
}

.invoice-info {
    flex: 1;
}

.invoice-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fenogram-white);
    margin-bottom: 4px;
}

.invoice-date {
    font-size: 0.8rem;
    color: var(--fenogram-text-gray);
}

.invoice-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fenogram-yellow);
    margin-right: 16px;
}

.invoice-download-btn {
    padding: 8px 16px;
    background-color: rgba(255, 255, 138, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 3px solid var(--fenogram-yellow);
    color: var(--fenogram-white);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.invoice-download-btn:hover {
    background-color: rgba(255, 255, 138, 0.15);
}

.payment-method {
    font-size: 0.85rem;
    color: var(--fenogram-text-gray);
}


/* Purchase List (Unified) */
.purchase-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.purchase-item {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--fenogram-yellow);
    padding: 20px;
}

.purchase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.purchase-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.purchase-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.purchase-id {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--fenogram-white);
}

.purchase-date {
    font-size: 0.85rem;
    color: var(--fenogram-text-gray);
}

.purchase-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fenogram-yellow);
}

.purchase-products {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.purchase-product {
    font-size: 0.9rem;
    color: var(--fenogram-white);
    font-weight: 400;
}

.purchase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.purchase-payment {
    font-size: 0.85rem;
    color: var(--fenogram-text-gray);
}

.purchase-invoice-btn {
    padding: 8px 14px;
    background-color: rgba(255, 255, 138, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--fenogram-white);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.purchase-invoice-btn:hover {
    background-color: rgba(255, 255, 138, 0.15);
}

.purchase-invoice-btn svg {
    stroke: var(--fenogram-yellow);
}

/* Membership Plans */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.membership-plan {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.membership-plan:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.plan-featured {
    border: 1px solid var(--fenogram-yellow);
    background-color: rgba(255, 255, 138, 0.05);
}

.plan-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fenogram-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 28px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--fenogram-white);
}

.period {
    font-size: 1rem;
    color: var(--fenogram-text-gray);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--fenogram-white);
    margin-bottom: 12px;
    font-weight: 400;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 138, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--fenogram-yellow);
    color: var(--fenogram-white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.plan-btn:hover {
    background-color: rgba(255, 255, 138, 0.15);
}

.plan-btn-active {
    background-color: rgba(255, 255, 138, 0.15);
    border-left-color: var(--fenogram-yellow);
    cursor: default;
}

.current-membership {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.membership-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.membership-info-item span {
    font-size: 0.85rem;
    color: var(--fenogram-text-gray);
}

.membership-info-item strong {
    font-size: 0.95rem;
    color: var(--fenogram-white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .current-membership {
        grid-template-columns: 1fr;
    }
}


.purchase-status {
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}


/* Data Tables */
.table-container {
    overflow-x: auto;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background-color: rgba(255, 255, 255, 0.05);
}

.data-table th {
    padding: 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fenogram-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table td {
    padding: 16px;
    font-size: 0.9rem;
    color: var(--fenogram-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.table-status {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.table-action-btn {
    padding: 6px 12px;
    background-color: rgba(255, 255, 138, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--fenogram-white);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.table-action-btn:hover {
    background-color: rgba(255, 255, 138, 0.15);
}

.table-action-btn svg {
    stroke: var(--fenogram-yellow);
}

@media (max-width: 768px) {
    .data-table {
        font-size: 0.85rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 12px 10px;
        font-size: 0.8rem;
    }
}

