.websync-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.websync-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.websync-modal-content {
    position: relative;
    background: #fff;
    margin: 100px auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: websync-modal-fade-in 0.3s ease;
}

@keyframes websync-modal-fade-in {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.websync-modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #eee;
}

.websync-modal-header h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #23282d;
    font-weight: 600;
}

.websync-modal-header p {
    margin: 0;
    color: #646970;
    font-size: 14px;
}

.websync-modal-body {
    padding: 20px 30px;
}

.websync-reasons-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.websync-reasons-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.websync-reasons-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.websync-reasons-list label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.websync-reasons-list input[type="radio"] {
    margin: 3px 10px 0 0;
    flex-shrink: 0;
}

.websync-reasons-list span {
    font-size: 14px;
    color: #2c3338;
    line-height: 1.5;
}

.reason-details {
    margin-top: 10px;
    margin-left: 25px;
    animation: websync-details-fade-in 0.3s ease;
}

@keyframes websync-details-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reason-details textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.reason-details textarea:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.websync-feedback-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.websync-feedback-footer .button {
    font-size: 13px;
    height: 35px;
    line-height: 33px;
    padding: 0 15px;
}

.websync-feedback-footer .button-primary {
    background: #2271b1;
    border-color: #2271b1;
}

.websync-feedback-footer .button-primary:hover {
    background: #135e96;
    border-color: #135e96;
}

.websync-feedback-footer .button-secondary {
    color: #2271b1;
    border-color: #2271b1;
    background: #f6f7f7;
}

.websync-feedback-footer .button-secondary:hover {
    background: #f0f0f1;
}

.websync-feedback-footer .button-link {
    color: #646970;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
}

.websync-feedback-footer .button-link:hover {
    color: #135e96;
}