.wccf-modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
}

.wccf-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
}

.wccf-modal-header {
    background: #2271b1;
    color: white;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wccf-modal-header h3 {
    margin: 0;
    color: white;
}

.wccf-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.wccf-modal-body {
    padding: 20px;
}

.wccf-form-group {
    margin-bottom: 20px;
}

.wccf-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.wccf-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.wccf-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.wccf-success {
    color: green;
    margin-top: 10px;
    font-weight: bold;
}

.wccf-error {
    color: red;
    margin-top: 10px;
}