.crm-upload-choice {
    display: grid;
    gap: 7px;
    width: 100%;
}

.crm-upload-choice-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.crm-upload-choice-btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    color: #0f2f73;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
}

.crm-upload-choice-btn:hover {
    background: #f8fbff;
    border-color: #93b4ea;
}

.crm-upload-choice-btn.camera {
    border-color: #1554c0;
    background: #1554c0;
    color: #fff;
}

.crm-upload-choice-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.crm-upload-choice-name {
    min-height: 18px;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.crm-upload-choice .crm-upload-choice-source {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 520px) {
    .crm-upload-choice-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-upload-choice-btn {
        width: 100%;
        min-width: 0;
    }
}
