/* ===== WP Rezervace — formulář ===== */

.wprez-wrap {
    max-width: 580px;
    margin: 0 auto;
    font-family: inherit;
}

.wprez-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.wprez-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wprez-field {
    flex: 1;
    min-width: 200px;
    margin-bottom: 14px;
}

.wprez-field label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.wprez-input,
.wprez-select,
.wprez-textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

.wprez-input:focus,
.wprez-select:focus,
.wprez-textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
}

.wprez-textarea { resize: vertical; }

/* Slot info */
.wprez-slot-info {
    background: #e8f4fd;
    border-left: 4px solid #0d6efd;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.wprez-slot-selected {
    background: #d1e7dd;
    border-color: #198754;
}

/* Loading */
.wprez-loading {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

/* Tlačítka */
.wprez-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.wprez-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.15s;
}
.wprez-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.wprez-btn-primary  { background: #0d6efd; color: #fff; }
.wprez-btn-primary:hover:not(:disabled) { background: #0b5ed7; }
.wprez-btn-secondary { background: #6c757d; color: #fff; }
.wprez-btn-secondary:hover:not(:disabled) { background: #5a6268; }

/* Alerty */
.wprez-alert {
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.wprez-alert-error {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f1aeb5;
}

/* Potvrzení */
.wprez-success {
    text-align: center;
    padding: 30px 20px;
}
.wprez-success-icon {
    font-size: 3rem;
    color: #198754;
    line-height: 1;
    margin-bottom: 12px;
}
.wprez-success h3 {
    font-size: 1.4rem;
    color: #198754;
    margin-bottom: 10px;
}
.wprez-small { font-size: 0.85rem; color: #666; }
