/* ===== SEND UBL ===== */

.sendubl-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E5E5E8;
    border-top: 3px solid #8B9EE8;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    padding: 28px 32px;
    margin: 16px 15rem 36px;
    min-height: 300px;
    min-width: 0;
}

.sendubl-card h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111111;
    margin: 0 0 6px;
}

.sendubl-card p {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin: 0 0 20px;
}

.sendubl-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
    margin-top: 8px;
}

.sendubl-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sendubl-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9CA3AF;
}

.sendubl-select {
    padding: 7px 11px;
    border-radius: 12px;
    border: 1.5px solid #E5E5E8;
    font-size: 0.875rem;
    font-family: inherit;
    background: #fff;
    color: #111111;
    transition: border-color 0.18s, box-shadow 0.18s;
    width: 100%;
    box-sizing: border-box;
}

.sendubl-select:focus {
    outline: none;
    border-color: #8B9EE8;
    box-shadow: 0 0 0 2px rgba(139,158,232,0.25);
}

.sendubl-file-wrap {
    border: 1.5px solid #E5E5E8;
    border-radius: 12px;
    padding: 10px 14px;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sendubl-file-wrap input[type=file] {
    font-size: 0.82rem;
    color: #6B7280;
    font-family: inherit;
    width: 100%;
}

.sendubl-file-wrap input[type=file]::file-selector-button {
    padding: 6px 14px;
    border-radius: 12px;
    border: 1.5px solid #E5E5E8;
    background: #fff;
    color: #374151;
    font-size: 0.82rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    margin-right: 10px;
}

.sendubl-file-wrap input[type=file]::file-selector-button:hover {
    background: #EAF1FF;
    border-color: #8B9EE8;
    color: #474570;
}

.sendubl-file-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #6B7280;
}

.sendubl-file-info i {
    color: #8B9EE8;
}

.sendubl-textarea {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1.5px solid #E5E5E8;
    font-size: 0.8rem;
    font-family: monospace;
    background: #fff;
    color: #374151;
    width: 100%;
    min-height: 200px;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.18s, box-shadow 0.18s;
    line-height: 1.5;
}

.sendubl-textarea:focus {
    outline: none;
    border-color: #8B9EE8;
    box-shadow: 0 0 0 2px rgba(139,158,232,0.25);
}

.sendubl-actions {
    margin-top: 4px;
}

.sendubl-submit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 22px;
    border-radius: 20px;
    border: none;
    background-color: #E8825A;
    color: #fff;
    cursor: pointer;
    font-size: 0.88rem;
    font-family: inherit;
    font-weight: 600;
    transition: background 0.15s;
}

.sendubl-submit:hover {
    background-color: #D4714A;
}

.sendubl-submit:disabled {
    opacity: 0.6;
    cursor: default;
}
