.rpro-widget {
    margin: 30px 0;
    font-family: inherit;
}

.rpro-widget-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
}

.rpro-widget-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    padding: 22px;
    box-sizing: border-box;
}

.rpro-vehicle-image img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 16px;
}

.rpro-vehicle-title {
    margin: 0 0 12px;
}

.rpro-vehicle-description {
    color: #444;
    margin-bottom: 14px;
}

.rpro-vehicle-meta {
    display: inline-block;
    background: #f4f6f8;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 14px;
    margin-bottom: 18px;
}

.rpro-legend-box {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.rpro-legend-box h4 {
    margin: 0 0 12px;
    font-size: 16px;
}

.rpro-legend-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rpro-legend-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.rpro-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-top: 2px;
    border: 1px solid rgba(0,0,0,.15);
    flex: 0 0 16px;
}

.rpro-legend-color-blocked {
    background: #a0a0a0;
}

.rpro-legend-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rpro-legend-text strong {
    font-size: 14px;
    line-height: 1.2;
}

.rpro-legend-text span,
.rpro-legend-empty {
    font-size: 13px;
    color: #666;
}

.rpro-field {
    margin-bottom: 16px;
}

.rpro-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.rpro-field input,
.rpro-field textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 10px 12px;
    box-sizing: border-box;
    font: inherit;
}

.rpro-actions-row {
    margin-top: 18px;
}

.rpro-btn {
    border: 0;
    border-radius: 8px;
    padding: 12px 18px;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.rpro-btn-primary {
    background: #111827;
    color: #fff;
}

.rpro-btn-primary:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.rpro-summary-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    margin-top: 18px;
    margin-bottom: 14px;
}

.rpro-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.rpro-summary-line:last-child {
    margin-bottom: 0;
}

.rpro-summary-total {
    font-size: 18px;
}

.rpro-breakdown-list {
    border-top: 1px solid #ececec;
    margin-top: 12px;
}

.rpro-breakdown-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
}

.rpro-alert {
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 14px;
    font-size: 14px;
}

.rpro-alert-success {
    background: #e8f7ed;
    color: #176534;
}

.rpro-alert-error {
    background: #fdecec;
    color: #a12622;
}

.rpro-alert-info {
    background: #eef4ff;
    color: #1f4e96;
}

.rpro-sep {
    margin: 22px 0;
    border: 0;
    border-top: 1px solid #ececec;
}

.rpro-submit-summary {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fafafa;
}

.rpro-submit-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
    font-size: 14px;
}

.rpro-submit-summary-total {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    font-size: 18px;
}

.rpro-submit-help {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

/* Flatpickr */
.flatpickr-day.rpro-day-blocked,
.flatpickr-day.rpro-day-blocked:hover {
    background: #a0a0a0 !important;
    border-color: #a0a0a0 !important;
    color: #fff !important;
    opacity: .55;
}

.flatpickr-day.rpro-day-season {
    border-radius: 8px;
}

@media (max-width: 900px) {
    .rpro-widget-grid {
        grid-template-columns: 1fr;
    }
}