
/* Modern Frontend Styles */
.mrr-form {
    max-width: 500px;
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0 auto;
}

.mrr-form h3 {
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

.mrr-form-group {
    margin-bottom: 20px;
}

.mrr-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.mrr-form input,
.mrr-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.mrr-form input:focus,
.mrr-form select:focus {
    outline: none;
    border-color: #bb9149;
    box-shadow: 0 0 0 3px rgba(187, 145, 73, 0.1);
}

.mrr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mrr-btn {
    width: 100%;
    background: linear-gradient(135deg, #bb9149, #a67c3a);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.mrr-btn:hover {
    background: linear-gradient(135deg, #a67c3a, #8f6829);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(187, 145, 73, 0.4);
}

.mrr-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.mrr-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f4f6;
    border-radius: 50%;
    border-top-color: #3b82f6;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.mrr-notice {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
}

.mrr-notice.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.mrr-notice.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.mrr-cancel-form {
    max-width: 400px;
    margin: 0 auto;
}

.mrr-cancel-list {
    max-width: 600px;
    margin: 0 auto;
}

.mrr-reservation-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mrr-cancel-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.mrr-cancel-btn:hover {
    background: #dc2626;
}

.ui-datepicker {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.mrr-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    resize: vertical;
    min-height: 80px;
}

.mrr-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
    .mrr-form {
        padding: 24px 20px;
        margin: 20px;
    }
    
    .mrr-form-row {
        grid-template-columns: 1fr;
    }
}
