
.booking-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
.form-group select {
    width: 150px;
    height: 40px;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23333"><polygon points="0,0 12,0 6,6"/></svg>') no-repeat right 10px center;
    background-size: 10px;
}
.price-display {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    font-size: 16px;
}
.price-display p {
    margin: 5px 0;
    color: #333;
}
button {
    background-color: #0073aa;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #005177;
}
#form-message, #sync-message, #bulk-message, .confirmation-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}
.confirmation-message {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}
.success {
    background-color: #dff0d8;
    color: #3c763d;
}
.error {
    background-color: #f2dede;
    color: #a94442;
}
#sync-now:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
#bookings-table .sortable {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}
#bookings-table .sorting-indicator::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
#bookings-table .asc .sorting-indicator::after {
    border-bottom: 5px solid #0073aa;
}
#bookings-table .desc .sorting-indicator::after {
    border-top: 5px solid #0073aa;
}
#bookings-table .check-column {
    width: 30px;
    text-align: center;
}
.tablenav .actions {
    margin-bottom: 10px;
}