/* Cron notification styles - matching dashboard theme */
.boostify-cron-notification {
    background: linear-gradient(180deg, #110a1a 0%, #1b0f27 100%);
    border: 1px solid rgba(10, 202, 69, 0.2);
    border-radius: 15px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(10, 202, 69, 0.15), 0 0 0 1px rgba(135, 25, 243, 0.1);
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: "Poppins Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.boostify-cron-notification::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0ACA45 0%, #08B83A 100%);
    border-radius: 15px 0 0 15px;
}

.notification-pulse {
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ACA45;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(10, 202, 69, 0.7);
}

.notification-icon-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.notification-icon-bg {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(10, 202, 69, 0.15) 0%, rgba(8, 184, 58, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10, 202, 69, 0.2);
}

.notification-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(10, 202, 69, 0.3));
}

.notification-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #ffffff;
    font-family: "Poppins SemiBold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.02em;
}

.notification-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Poppins Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.notification-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    padding: 0;
    outline: none;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.notification-close:active {
    transform: scale(0.95);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 202, 69, 0.7);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(10, 202, 69, 0);
        transform: translateY(-50%) scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 202, 69, 0);
        transform: translateY(-50%) scale(1);
    }
}

/* Mini chart styling for Total Posts Week */
#total-posts-week-chart,
#pending-posts-week-chart {
    width: 100% !important;
    height: 200px !important;
    background: #16141a !important;
    border-radius: 0;
    display: block;
    max-width: 100%;
}

.total-post-bottom-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.total-post-bottom-row canvas {
    background: #010101 !important;
}
