.time-input {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    height: 36px;
    box-sizing: border-box;
    padding: 0 12px;
    overflow: hidden;
    background-color: var(--form-control-background);
    color: var(--form-control-foreground);
    border-radius: 10px;
}

.time-input:focus-within {
    outline: 2px solid #FD7E14;
}

.time-input-disabled {
    background-color: #F9F9F9;
    color: var(--form-control-placeholder);
}

.time-input img {
    display: block;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin: 0;
}

.time-input-control {
    min-width: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    background: transparent;
    color: inherit;
    border: 0;
    outline: 0;
    font-family: 'Nunito SemiBold';
    font-size: 14px;
}

.time-input-control::placeholder {
    color: var(--form-control-placeholder);
    font-family: 'Nunito Regular';
    font-weight: 400;
    opacity: 1;
}

.time-input-control:disabled {
    color: var(--form-control-placeholder);
    -webkit-text-fill-color: var(--form-control-placeholder);
    opacity: 1;
}
