.cp-events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.cp-event-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    background: #fff;
}

.cp-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cp-event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cp-event-content {
    padding: 20px;
}

.cp-event-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.cp-event-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.cp-event-meta span {
    display: block;
}

.cp-event-price {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.cp-event-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.cp-event-link {
    text-decoration: none;
    font-weight: bold;
    color: #0073aa;
}

/* Booking Form */
.cp-event-form {
    max-width: 600px;
    background: #fdfdfd;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.cp-form-row {
    display: flex;
    gap: 20px;
}

.cp-form-field {
    margin-bottom: 20px;
    flex: 1;
}

.cp-form-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.cp-form-field input[type="text"],
.cp-form-field input[type="email"],
.cp-form-field input[type="number"],
.cp-form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.cp-form-field-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cp-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
}

.cp-form-message.success {
    background: #e7f4e7;
    color: #2e7d32;
    border: 1px solid #c3e6cb;
}

.cp-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.cp-submit-button {
    background: #0073aa;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cp-submit-button:disabled {
    background: #ccc;
}
