.res25-booking-form {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.res25-form-group {
    margin-bottom: 1.5em;
}

.res25-form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.res25-form-group input[type="date"],
.res25-form-group input[type="number"],
.res25-form-group select {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.res25-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 1em 0;
}

.res25-time-slot {
    padding: 0.5em;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.res25-time-slot:hover {
    background: #f5f5f5;
}

.res25-time-slot.selected {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.res25-time-slot.disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.res25-message {
    padding: 1em;
    margin: 1em 0;
    border-radius: 4px;
}

.res25-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.res25-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.res25-submit {
    background: #4CAF50;
    color: white;
    padding: 0.8em 2em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.res25-submit:hover {
    background: #388E3C;
}

.res25-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.res25-booking-form {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.res25-form-group {
    margin-bottom: 1.5em;
}

.res25-form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.res25-form-group input[type="text"],
.res25-form-group input[type="email"],
.res25-form-group input[type="tel"],
.res25-form-group input[type="date"],
.res25-form-group input[type="number"],
.res25-form-group textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.res25-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 0.5em;
}

.res25-time-slot {
    padding: 0.8em;
    text-align: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.res25-time-slot:hover:not(.disabled) {
    background: #e0e0e0;
}

.res25-time-slot.selected {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.res25-time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.res25-message {
    padding: 1em;
    margin: 1em 0;
    border-radius: 4px;
}

.res25-message.success {
    background: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #A5D6A7;
}

.res25-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.res25-form-actions {
    display: flex;
    gap: 1em;
    margin-top: 2em;
}

.res25-button {
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

#res25-prev {
    background: #f5f5f5;
    color: #333;
}

#res25-next,
#res25-submit {
    background: #4CAF50;
    color: white;
}

.res25-button:hover {
    opacity: 0.9;
}

.res25-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.res25-time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.res25-time-slot.selected {
    background-color: #4CAF50;
    color: white;
}

.res25-message {
    margin: 15px 0;
    padding: 10px 15px;
    border-radius: 4px;
}

.res25-message.success {
    background-color: #e8f5e9;
    border: 1px solid #4CAF50;
    color: #2e7d32;
}

.res25-message.error {
    background-color: #ffebee;
    border: 1px solid #ef5350;
    color: #c62828;
}

.res25-form-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.res25-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #4CAF50;
    color: white;
}

.res25-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#res25-prev {
    background: #666;
}

.res25-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.res25-form-group {
    margin-bottom: 15px;
}

.res25-form-group label {
    display: block;
    margin-bottom: 5px;
}

.res25-form-group input,
.res25-form-group textarea {
    width: 100%;
    padding: 8px;
}

.res25-time-slot::after {
    content: none !important;
}