/* Minimal styling for Date Range Calculator plugin */
.date-range-calc {
    border: 1px solid #e1e1e1;
    padding: 12px;
    border-radius: 8px;
    max-width: 640px;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
}
.date-range-title { margin-top: 0; font-size: 1.15rem; }
.date-range-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-items: center; margin-bottom: 10px; }
.date-range-form label { font-size: 0.9rem; }
.date-range-form input[type="date"] { padding: 6px; width: 100%; box-sizing: border-box; }
.dr-include-label { grid-column: 1 / -1; }
.date-range-form button { padding: 8px 10px; cursor: pointer; border-radius: 4px; border: 1px solid #ccc; background: #fafafa; width: 140px; }
.dr-result p { margin: 0; padding: 6px 0; }
.dr-error { color: #b00020; }
.dr-output { background: #fbfbfb; padding: 8px; border-radius: 4px; margin-top: 6px; }