* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #faf8f6;
    --color-primary: #8b7355;
    --color-secondary: #a0896b;
    --color-tertiary: #6d5a42;
    --color-light: #d4c4a8;
    --color-white: #ffffff;
    --color-text: #2d2520;
    --color-text-secondary: #6d5a42;
    --shadow-sm: 0 1px 3px rgba(109, 90, 66, 0.08);
    --shadow-md: 0 4px 12px rgba(109, 90, 66, 0.12);
    --shadow-lg: 0 8px 24px rgba(109, 90, 66, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--color-bg) 0%, #f0ebe5 100%);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body.dark {
    background: linear-gradient(135deg, #0f0b09 0%, #1d1713 100%);
    color: #f8f1e8;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-white);
    min-height: 100vh;
    box-shadow: 0 0 60px rgba(109, 90, 66, 0.1);
}

body.dark .container {
    background: #1f1914;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, var(--color-white) 0%, rgba(250, 248, 246, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 115, 85, 0.08);
    box-shadow: 0 2px 16px rgba(109, 90, 66, 0.04);
}

body.dark .header {
    background: linear-gradient(180deg, rgba(32, 26, 21, 0.95) 0%, rgba(18, 14, 11, 0.92) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.back-button {
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    width: 40px;
    height: 40px;
}

body.dark .back-button {
    color: #f8f0e3;
}

.back-button svg path {
    stroke: currentColor;
    transition: stroke 0.3s ease;
}

body.dark .back-button svg path {
    stroke: #fff4d4;
}

.back-button:hover {
    background: rgba(139, 115, 85, 0.08);
    transform: translateX(-2px);
}

body.dark .back-button:hover {
    background: rgba(255, 255, 255, 0.08);
}
.header-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

body.dark .header-title {
    color: #f8f0e6;
}

.header-spacer {
    width: 40px;
}

/* Settings List */
.settings-list {
    padding: 0 0 40px 0;
}

.settings-section {
    margin-top: 32px;
}

.section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 20px 12px;
    margin-bottom: 4px;
}

body.dark .section-title {
    color: rgba(255, 226, 198, 0.9);
}

/* Settings Item */
.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(139, 115, 85, 0.06);
    position: relative;
    overflow: hidden;
}

body.dark .settings-item {
    background: rgba(28, 22, 18, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.settings-item:hover {
    background: rgba(250, 248, 246, 0.8);
}

body.dark .settings-item:hover {
    background: rgba(255, 255, 255, 0.05);
}
.item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(212, 196, 168, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-tertiary);
    transition: var(--transition);
    flex-shrink: 0;
}

body.dark .item-icon {
    background: linear-gradient(135deg, rgba(255, 210, 168, 0.18), rgba(255, 255, 255, 0.06));
    color: #f6d7b0;
}

.settings-item:hover .item-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    transform: rotate(-5deg) scale(1.05);
}

.item-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

body.dark .item-label {
    color: #f6ede3;
}

.item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-value {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

body.dark .item-value {
    color: rgba(255, 255, 255, 0.72);
}

.chevron {
    color: var(--color-secondary);
    transition: var(--transition);
    flex-shrink: 0;
}

body.dark .chevron {
    color: rgba(255, 255, 255, 0.4);
}

.settings-item:hover .chevron {
    transform: translateX(4px);
    color: var(--color-primary);
}

body.dark .settings-item:hover .chevron {
    color: #ffddb1;
}

/* Logout Section */
.logout-section {
    padding: 32px 20px 20px;
    margin-top: 24px;
}

.logout-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #a1663d 0%, #7a4a29 50%, #c37b44 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(122, 74, 41, 0.45);
}

body.dark .logout-button {
    background: linear-gradient(135deg, #c9783a 0%, #a04d1d 50%, #f0a464 100%);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
}

.logout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(122, 74, 41, 0.5);
}

.logout-button.logout-button--disabled {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.4) 0%, rgba(109, 90, 66, 0.35) 100%);
    box-shadow: none;
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.85);
}

.logout-button.logout-button--disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

body.dark .modal-content {
    background: #201914;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

body.dark .modal-header {
    background: #201914;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

.modal-body {
    padding: 20px;
    max-height: calc(90vh - 60px);
    overflow-y: auto;
}

body.dark .modal-body {
    background: #1a140f;
    color: #f6eee4;
}

.legal-modal {
    padding: 0;
    max-height: none;
    background: var(--color-white);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

body.dark .legal-modal {
    background: #1a140f;
    color: #f6eee4;
}

.legal-frame-wrapper {
    width: 100%;
    min-height: clamp(360px, 70vh, 640px);
    border-top: 1px solid #f1ece4;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.04), rgba(193, 153, 112, 0.08));
    border-bottom: 1px solid #f1ece4;
}

body.dark .legal-frame-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(197, 148, 92, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-iframe {
    width: 100%;
    height: clamp(360px, 70vh, 640px);
    border: none;
    background: #fff;
}

body.dark .legal-iframe {
    background: #18100b;
}

.legal-fallback {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--color-text-secondary);
    border-top: 1px solid #f1ece4;
    background: #fff;
}

.legal-fallback a {
    color: var(--color-primary);
    font-weight: 600;
}

body.dark .legal-fallback {
    background: #1a140f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

body.dark .legal-fallback a {
    color: #f7c689;
}

.about-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-hero-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7efe4, #ecdac5);
    color: #2f1f12;
}

body.dark .about-hero-card {
    background: linear-gradient(135deg, #37261b, #21150e);
    color: #fff0d8;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(47, 31, 18, 0.7);
    margin-bottom: 6px;
}

body.dark .about-hero-label {
    color: rgba(255, 240, 216, 0.7);
}

.about-hero-card h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.about-version {
    font-size: 14px;
    color: rgba(47, 31, 18, 0.7);
}

body.dark .about-version {
    color: rgba(255, 240, 216, 0.7);
}

.about-hero-badge {
    text-align: right;
}

.about-hero-badge span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(47, 31, 18, 0.6);
}

.about-hero-badge strong {
    font-size: 28px;
    letter-spacing: 0.1em;
}

body.dark .about-hero-badge span {
    color: rgba(255, 255, 255, 0.6);
}

body.dark .about-hero-badge strong {
    color: #ffe5bf;
}

.about-highlight-card {
    padding: 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.12), rgba(193, 153, 112, 0.18));
}

body.dark .about-highlight-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-highlight-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.about-highlight-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

body.dark .about-highlight-card p {
    color: rgba(255, 255, 255, 0.78);
}

.about-list-card {
    padding: 20px;
    border-radius: 14px;
    background: #f9f9f9;
}

body.dark .about-list-card {
    background: rgba(25, 20, 16, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.about-list-header h4 {
    margin: 0;
    font-size: 16px;
}

.about-list-header p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #8a7767;
}

body.dark .about-list-header p {
    color: rgba(255, 255, 255, 0.6);
}

.about-list-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.about-list-card li {
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--color-text);
}

.about-list-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

body.dark .about-list-card li {
    color: rgba(255, 255, 255, 0.85);
}

body.dark .about-list-card li::before {
    color: #f5c88f;
}

.about-footer-card {
    text-align: center;
    padding: 18px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 13px;
}

body.dark .about-footer-card {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
}

body.dark .about-footer-card small {
    color: rgba(255, 255, 255, 0.55);
}

body.dark .legal-fallback {
    background: #1a140f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

body.dark .legal-fallback a {
    color: #f7c689;
}

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

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

/* Modal de Confirmación */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.confirm-modal.active {
    display: flex;
}

.confirm-modal-content {
    background: white;
    border-radius: 20px;
    padding: 32px 24px 24px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(109, 90, 66, 0.3);
    animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.confirm-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 50%;
}

.confirm-modal-icon svg {
    width: 32px;
    height: 32px;
}

.confirm-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.confirm-modal-message {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.confirm-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
}

.confirm-btn-cancel {
    background: #f5f5f5;
    color: var(--color-text);
    display: flex;
}

.confirm-btn-cancel:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
}

.confirm-btn-confirm {
    background: var(--color-primary);
    color: white;
}

.confirm-btn-confirm:hover {
    background: var(--color-tertiary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.confirm-btn:active {
    transform: translateY(0);
}

/* Social Card */
.social-card {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.dark .social-card {
    background: #261e18;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.social-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

body.dark .social-header strong {
    color: #fde1c0;
}

body.dark .social-header div {
    color: rgba(255, 255, 255, 0.7);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.dark .social-icon {
    background: rgba(255, 255, 255, 0.08);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 44px;
}

body.dark .social-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
}

.follow-btn {
    background: #000;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.follow-btn:hover {
    background: var(--color-primary);
}

body.dark .follow-btn {
    background: linear-gradient(135deg, #f3c792, #d3813f);
    color: #1c130d;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

body.dark .follow-btn:hover {
    filter: brightness(1.05);
}

.contact-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.contact-modal-header h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-modal-header p {
    color: #666;
    font-size: 14px;
}

body.dark .contact-modal-header p {
    color: rgba(255, 255, 255, 0.7);
}

.support-email-card {
    margin-top: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 12px;
    text-align: center;
}

body.dark .support-email-card {
    background: rgba(30, 23, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.support-email-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.support-email-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

body.dark .support-email-text {
    color: rgba(255, 255, 255, 0.68);
}

.support-email-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.dark .support-email-link {
    color: #f7c88f;
}

/* Address Item */
.address-item {
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid rgba(139, 115, 85, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.address-item:hover {
    background: rgba(250, 248, 246, 0.5);
    border-color: var(--color-primary);
}

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

.address-name {
    font-weight: 600;
    font-size: 15px;
}

.address-badge {
    background: var(--color-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.address-details {
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.address-phone {
    margin-top: 6px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

body.dark .address-item {
    background: rgba(30, 23, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

body.dark .address-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 221, 177, 0.4);
}

body.dark .address-name {
    color: #ffe8cd;
}

.address-item p {
    margin: 0;
}

body.dark .address-badge {
    background: linear-gradient(135deg, #f3c792, #d3813f);
    color: #1c120c;
}

body.dark .address-details {
    color: rgba(255, 255, 255, 0.7);
}

body.dark .address-phone {
    color: rgba(255, 255, 255, 0.65);
}

/* Payment Card */
.payment-card {
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid rgba(139, 115, 85, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-card:hover {
    background: rgba(250, 248, 246, 0.5);
    border-color: var(--color-primary);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.card-icon {
    width: 40px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
}

.card-number {
    font-size: 14px;
    font-weight: 500;
}

.card-expiry {
    font-size: 12px;
    color: var(--color-text-secondary);
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-secondary {
    width: 100%;
    padding: 14px;
    background: white;
    color: var(--color-text);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-secondary:hover {
    background: rgba(139, 115, 85, 0.05);
}

.btn-danger {
    width: 100%;
    padding: 14px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-text {
    color: var(--color-text-secondary);
    font-size: 15px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.action-buttons button {
    flex: 1;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--color-secondary);
    color: var(--color-white);
}