/* public/css/category-notify.css */

.category-notify-box2536 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 20px 0;
    padding: 16px 20px;
    border: 1px solid rgba(0, 119, 130, 0.15);
    border-radius: 12px;
    background: #f4fbfb;
    color: #1f2937;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: all 0.2s ease-in-out;
}

.category-notify-content2536 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 auto;
}

.category-notify-icon2536 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 119, 130, 0.1);
    color: #007782;
    font-size: 16px;
    flex-shrink: 0;
}

.category-notify-info2536 {
    flex: 1 1 auto;
}

.category-notify-title2536 {
    margin: 0 0 4px 0;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.category-notify-text2536 {
    margin: 0;
    color: #4b5563;
    font-size: 13.5px;
    line-height: 1.5;
}

.category-notify-feedback2536 {
    margin: 6px 0 0 0;
    font-size: 12px;
    font-weight: 500;
    color: #007782;
}

.category-notify-action2536 {
    flex: 0 0 auto;
}

.category-notify-btn2536 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #007782;
    border-radius: 8px;
    background: #007782;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.category-notify-btn2536:hover,
.category-notify-btn2536:focus {
    background: #005f69;
    border-color: #005f69;
    color: #ffffff;
    text-decoration: none;
}

.category-notify-btn2536.is-subscribed {
    background: transparent;
    color: #007782;
    border-color: #007782;
}

.category-notify-btn2536.is-subscribed:hover,
.category-notify-btn2536.is-subscribed:focus {
    background: rgba(0, 119, 130, 0.05);
    color: #005f69;
    border-color: #005f69;
}

.category-notify-btn2536:disabled {
    cursor: wait;
    opacity: 0.6;
}

/* Dark Theme overrides with higher specificity to bypass theme.css !important rules */
html[data-theme="dark"] .category-notify-box2536,
html[data-theme="dark"] body .category-notify-box2536 {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #e5e7eb !important;
}

html[data-theme="dark"] .category-notify-icon2536,
html[data-theme="dark"] body .category-notify-icon2536 {
    background: rgba(0, 119, 130, 0.2) !important;
    color: #009aa9 !important;
}

html[data-theme="dark"] .category-notify-title2536,
html[data-theme="dark"] body .category-notify-title2536 {
    color: #f3f4f6 !important;
}

html[data-theme="dark"] .category-notify-text2536,
html[data-theme="dark"] body .category-notify-text2536 {
    color: #9ca3af !important;
}

html[data-theme="dark"] .category-notify-feedback2536,
html[data-theme="dark"] body .category-notify-feedback2536 {
    color: #009aa9 !important;
}

html[data-theme="dark"] .category-notify-btn2536,
html[data-theme="dark"] body .category-notify-btn2536 {
    background: #007782 !important;
    border-color: #007782 !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .category-notify-btn2536:hover,
html[data-theme="dark"] body .category-notify-btn2536:hover {
    background: #005f69 !important;
    border-color: #005f69 !important;
}

html[data-theme="dark"] .category-notify-btn2536.is-subscribed,
html[data-theme="dark"] body .category-notify-btn2536.is-subscribed {
    background: transparent !important;
    border-color: #007782 !important;
    color: #007782 !important;
}

html[data-theme="dark"] .category-notify-btn2536.is-subscribed:hover,
html[data-theme="dark"] body .category-notify-btn2536.is-subscribed:hover {
    background: rgba(0, 119, 130, 0.1) !important;
    border-color: #009aa9 !important;
    color: #009aa9 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .category-notify-box2536 {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 14px;
        margin: 10px 0 16px 0;
    }

    .category-notify-content2536 {
        gap: 10px;
    }

    .category-notify-icon2536 {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .category-notify-title2536 {
        font-size: 14px;
    }

    .category-notify-text2536 {
        font-size: 12px;
    }

    .category-notify-action2536 {
        width: 100%;
    }

    .category-notify-btn2536 {
        width: 100%;
        padding: 10px 16px;
        font-size: 14px;
    }
}
