.tbc-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tbc-field-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.tbc-field {
    padding: 0.6em 0.8em;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.tbc-field:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79,70,229,0.2);
}
.tbc-date-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}