/**
 * Plugin Styles
 * Contact Form 7, SCT Events, and other plugin overrides
 */

/* Contact Form 7 Overrides */
.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
}

.wpcf7-submit {
    background-color: #b71c1c;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
    background-color: #111;
}

/* SCT Events Styles */
.sct-events-list .event-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.sct-events-list .event-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}