/* Contact Form BD Styles */
.cfbd-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cfbd-form-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cfbd-form-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
    text-align: center;
}

.cfbd-form-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #333333;
    opacity: 0.8;
    text-align: center;
}

.cfbd-form-group {
    margin-bottom: 20px;
}

.cfbd-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333333;
}

.cfbd-form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    color: #333333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cfbd-form-control:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
    background-color: #ffffff;
}

.cfbd-submit-btn {
    display: inline-block;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.cfbd-submit-btn:hover {
    background-color: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 115, 170, 0.3);
}

.cfbd-form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.cfbd-form-response.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.cfbd-form-response.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.required {
    color: #e74c3c;
}

.cfbd-file-info {
    color: #333333;
    font-size: 13px;
    margin-top: 5px;
    opacity: 0.7;
}

/* Modal Styles */
#submission-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-modal:hover {
    color: #000;
}

.modal-body {
    margin-top: 20px;
}

.modal-body p {
    margin-bottom: 10px;
}

.modal-body p strong {
    display: inline-block;
    width: 120px;
}

/* Admin Styles */
.cfbd-color-picker {
    width: 80px;
}