.zoom-concat-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    padding: 20px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.zoom-center-container {
    width: 80%;
    margin-bottom: 20px;
}

.zoom-option-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a365d;
}

.zoom-field-description {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 10px;
}

.zoom-radio-container {
    flex-direction: column;
    margin-bottom: 20px;
    padding: 12px;
    background: #f7fafc;
    border-radius: 8px;
}

.zoom-radio-container label:hover {
    color: #3182ce;
}

.zoom-custom-input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 2px solid #edf2f7;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.zoom-custom-input:hover {
    border-color: #bee3f8;
}

.zoom-custom-input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
    background-color: #fff;
}

.zoom-concat-button {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 20px;
    width: 100%;
    color: white;
    background-color: #4299e1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zoom-concat-button:hover {
    background-color: #3182ce;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.2);
}

.zoom-concat-button:active {
    transform: translateY(0);
}

#zoom-outputContainer {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

select.zoom-custom-input {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}