/* Notification Scheduler Popup Styles */

.ns-popup {
    position: fixed;
    bottom: 1rem;
    z-index: 9998;
    width: 100%;
    max-width: 20rem;
    padding: 1rem 0.75rem;
    border-radius: 0.5rem;
    background-color: white;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    box-shadow: 2px 2px 10px 2px hsla(0, 4%, 4%, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    left: 0.5rem;
    right: auto;
    transition: left 0.3s, right 0.3s;
}

.ns-popup-right {
    left: auto !important;
    right: 0.5rem !important;
}

.ns-popup-left {
    left: 0.5rem !important;
    right: auto !important;
}

.ns-effect-fade {
    /* fade handled by jQuery, but can add custom fade if needed */
}

.ns-effect-slide {
    /* slide handled by jQuery, but can add custom slide if needed */
}

.ns-close-btn {
    position: absolute!important;
    top: 0.5rem!important;
    right: 0.5rem!important;
    color: #6b7280!important;
    background: none!important;
    border: none!important;
    cursor: pointer!important;
    padding: 0!important;
    display: flex!important;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease!important;
}

.ns-close-btn:hover {
    color: #374151!important;
}

.ns-icon-container {
    width: 90px;
    height: 77px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    flex-shrink: 0;
    border-radius: 0.375rem;
}

.ns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.ns-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.2;
    flex: 1;
}

.ns-text {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    color: #374151;
}

/* Responsive design */
@media (min-width: 768px) {
    .ns-popup {
        max-width: 24rem;
        padding: 1rem;
    }
}

/* Animation classes */
.ns-popup.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

.ns-popup.fade-out {
    animation: fadeOut 0.3s ease-in-out;
}

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

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

/* Admin page styles */
.ns-variable-row {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.ns-variable-row h3 {
    margin-top: 0;
    color: #23282d;
    font-size: 16px;
}

.ns-remove-variable {
    margin-top: 10px !important;
    background: #dc3232 !important;
    border-color: #dc3232 !important;
    color: white !important;
}

.ns-remove-variable:hover {
    background: #c92626 !important;
    border-color: #c92626 !important;
}

#ns-add-variable {
    margin-bottom: 20px !important;
}

.ns-var-values-row {
    transition: all 0.3s ease;
} 