.standard-date-original {
    display: none !important;
}

.standard-date-segments {
    align-items: center;
    background: var(--input-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: inline-grid;
    gap: 6px;
    grid-template-columns: 54px 10px 58px 10px 88px;
    max-width: 100%;
    padding: 7px 10px;
    transition: var(--transition);
    width: auto;
}

.standard-date-segments:focus-within {
    background: rgba(37, 40, 44, 0.8);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
}

.standard-date-segments input {
    background: transparent;
    border: 0;
    border-radius: 7px;
    box-shadow: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    min-width: 0;
    padding: 8px 6px;
    text-align: center;
    width: 100%;
}

.standard-date-segments input:focus {
    background: rgba(255, 255, 255, 0.045);
    border: 0;
    box-shadow: none;
    outline: none;
}

.standard-date-segments span {
    color: rgba(255, 255, 255, 0.28);
    font-weight: 900;
    text-align: center;
}

@media (max-width: 480px) {
    .standard-date-segments {
        gap: 4px;
        grid-template-columns: 48px 8px 54px 8px 76px;
        padding: 6px 8px;
    }
}
