.cf7-async-upload-wrapper {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    background: #f8fafc;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: inherit;
}

.cf7-async-upload-wrapper:hover, 
.cf7-async-upload-wrapper.dragover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.cf7-async-upload-wrapper:hover .cf7-async-icon svg, 
.cf7-async-upload-wrapper.dragover .cf7-async-icon svg {
    stroke: #3b82f6;
}

.cf7-async-icon {
    margin-bottom: 15px;
}

.cf7-async-icon svg {
    transition: stroke 0.3s ease;
}

.cf7-async-label {
    font-size: 16px;
    color: #475569;
    pointer-events: none;
    display: block;
    margin-bottom: 10px;
}

.cf7-async-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.cf7-async-progress-bar {
    width: 100%;
    max-width: 350px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: 15px auto 0 auto;
    overflow: hidden;
}

.cf7-async-progress-fill {
    height: 100%;
    width: 0%;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.cf7-async-message {
    margin-top: 12px;
    font-size: 14px;
    min-height: 21px;
}