.web-event-booking-form-wrapper {
background: #f9f9f9;
padding: 30px;
border: 1px solid #ddd;
border-radius: 5px;
margin-top: 30px;
}
.web-event-booking-form-wrapper h2 {
margin-top: 0;
color: #333;
border-bottom: 2px solid #007bba;
padding-bottom: 10px;
margin-bottom: 20px;
}
#show-booking-form {
font-size: 18px;
padding: 15px 30px;
}
#booking-form-container {
margin-top: 20px;
}
.participant-row {
background: #fff;
border: 2px solid #ddd;
border-radius: 8px;
padding: 20px;
margin-bottom: 25px;
}
.participant-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid #e0e0e0;
}
.participant-header h4 {
margin: 0;
color: #007bba;
font-size: 18px;
}
.participant-header .remove-participant {
color: #dc3545;
text-decoration: none;
padding: 0;
border: none;
background: none;
cursor: pointer;
}
.participant-header .remove-participant:hover {
color: #a02622;
text-decoration: underline;
}
.participant-fields {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}
@media (max-width: 992px) {
.participant-fields {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 576px) {
.participant-fields {
grid-template-columns: 1fr;
}
}
.form-field {
display: flex;
flex-direction: column;
}
.form-field label {
display: block;
margin-bottom: 6px;
font-weight: 500;
color: #333;
font-size: 14px;
}
.form-field label .required {
color: #dc3545;
}
.form-field input,
.form-field select,
.form-field textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
transition: border-color 0.2s;
box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
outline: none;
border-color: #007bba;
box-shadow: 0 0 5px rgba(0, 123, 186, 0.3);
}
.form-field input[type="checkbox"] {
width: auto;
margin-top: 5px;
}
.form-actions {
display: flex;
gap: 15px;
margin-top: 30px;
padding-top: 20px;
border-top: 2px solid #e0e0e0;
}
.form-actions button {
background-color: #007bba;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: background-color 0.2s;
}
.form-group button:hover {
background-color: #0056a3;
}
.form-group button:active {
background-color: #004085;
}
.web-event-booking-full {
background: #fff3cd;
border: 1px solid #ffc107;
padding: 20px;
border-radius: 5px;
margin-top: 30px;
color: #856404;
}
.web-event-booking-full p {
margin: 0 0 15px 0;
font-weight: 500;
}
.web-booking-participants {
background: white;
padding: 15px;
border-radius: 4px;
margin-top: 15px;
}
.web-booking-participants h3 {
margin-top: 0;
margin-bottom: 15px;
color: #333;
}
.web-booking-participants ul {
list-style: none;
padding: 0;
margin: 0;
}
.web-booking-participants li {
padding: 8px;
border-bottom: 1px solid #eee;
}
.web-booking-participants li:last-child {
border-bottom: none;
}
#booking-message {
margin-top: 20px;
}
.notice {
padding: 12px;
margin: 15px 0;
border-left: 4px solid #dc3545;
background: #f8d7da;
color: #721c24;
border-radius: 4px;
}
.notice-success {
border-left-color: #28a745;
background: #d4edda;
color: #155724;
} .booking-availability-info {
background: #e7f5ff;
border: 1px solid #b3d9ff;
padding: 15px;
border-radius: 5px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 10px;
}
.availability-message {
margin: 0;
font-weight: 500;
color: #004085;
}
.availability-message.slots-available {
color: #155724;
background: #d4edda;
border: 1px solid #c3e6cb;
padding: 10px 15px;
border-radius: 4px;
width: 100%;
}
.availability-message.no-slots {
color: #721c24;
background: #f8d7da;
border: 1px solid #f5c6cb;
padding: 10px 15px;
border-radius: 4px;
width: 100%;
} #add-participant:disabled {
background-color: #9ca3af;
cursor: not-allowed;
opacity: 0.6;
}
#add-participant:disabled:hover {
background-color: #9ca3af;
} .booking-success-container {
padding: 20px;
margin: 10px 0;
}
.booking-success-header {
background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
color: white;
padding: 20px;
border-radius: 8px 8px 0 0;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.booking-success-header .success-title {
font-size: 24px;
font-weight: bold;
margin: 0 0 10px 0;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.booking-success-header .participants-count {
font-size: 14px;
margin: 0;
opacity: 0.95;
}
.participants-list {
background: #f8f9fa;
padding: 20px;
border-left: 4px solid #28a745;
margin: 0;
}
.participant-item {
padding: 8px 0;
font-size: 15px;
color: #333;
line-height: 1.6;
}
.participant-item:last-child {
padding-bottom: 0;
}
.email-confirmation-alert {
background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
color: white;
padding: 25px;
border-radius: 0 0 8px 8px;
display: flex;
align-items: flex-start;
gap: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 0;
}
.email-confirmation-alert .alert-icon {
font-size: 32px;
flex-shrink: 0;
line-height: 1;
}
.email-confirmation-alert .alert-content {
flex: 1;
}
.email-confirmation-alert h3 {
margin: 0 0 8px 0;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.email-confirmation-alert p {
margin: 0;
font-size: 15px;
font-weight: 500;
} @media (max-width: 768px) {
.booking-success-container {
padding: 10px;
}
.booking-success-header {
padding: 15px;
}
.booking-success-header .success-title {
font-size: 20px;
}
.email-confirmation-alert {
padding: 20px;
flex-direction: column;
align-items: center;
text-align: center;
}
.email-confirmation-alert .alert-icon {
font-size: 28px;
}
.email-confirmation-alert h3 {
font-size: 16px;
}
}