/* Date Checker plugin styles */
:root{
    --dc-bg-1: #f7f9ff;
    --dc-accent-1: #6c5ce7;
    --dc-accent-2: #00b894;
    --dc-radius: 12px;
    --dc-font: "Segoe UI", Roboto, Arial, sans-serif;
}

.dc-wrapper {
    /* allow custom wrapper but shortcode uses id so default won't conflict */
}

.dc-title {
    font-family: var(--dc-font);
    text-align: center;
    color: var(--dc-accent-1);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dc-form {
    max-width: 520px;
    margin: 0 auto;
    padding: 18px;
    border-radius: var(--dc-radius);
    background: linear-gradient(135deg, #ffffff, #f3f6ff);
    box-shadow: 0 8px 30px rgba(20,30,60,0.06);
    font-family: var(--dc-font);
}

.dc-label {
    display: block;
    margin-bottom: 12px;
}

.dc-label-text {
    display: block;
    margin-bottom: 6px;
    color: #354052;
    font-weight: 600;
}

.dc-label input[type="date"],
.dc-label input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6e9f2;
    background: #fff;
    box-sizing: border-box;
    font-size: 15px;
}

.dc-buttons {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.dc-btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dc-primary {
    background: linear-gradient(90deg, var(--dc-accent-1), #4f46e5);
    color: #fff;
    box-shadow: 0 6px 18px rgba(79,70,229,0.12);
}

.dc-secondary {
    background: #f1f5f9;
    color: #233044;
    border: 1px solid #e6e9f2;
}

.dc-result {
    max-width: 520px;
    margin: 14px auto 0;
    text-align: left;
    font-family: var(--dc-font);
}

.dc-result-box{
    background: linear-gradient(90deg, rgba(99,102,241,0.06), rgba(16,185,129,0.04));
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(16,24,40,0.03);
}

.dc-result-list { list-style: none; padding-left: 0; margin: 6px 0 0; display:flex; gap:18px; flex-wrap:wrap; }
.dc-result-list li { background: rgba(255,255,255,0.9); padding:8px 10px; border-radius:8px; border:1px solid #eef2ff; font-weight:600; }

.dc-total { margin-top:8px; color:#333; font-weight:600; }

.dc-note { margin-bottom:8px; color:#4b5563; font-size:14px; }

.dc-loading { color: #374151; }

.dc-error { color: #b91c1c; background: #fff7f7; padding: 10px; border-radius: 8px; border:1px solid #fee2e2; }

/* Responsive */
@media (max-width: 680px) {
    .dc-result-list { gap:10px; }
    .dc-form { padding: 14px; }
    .dc-buttons { flex-direction: column; }
    .dc-btn { width: 100%; justify-content:center; }
}
