/* ==================== CUSTOM TIMESTAMP PICKER ==================== */

.timestamp-picker {
    position: absolute;
    background: #2b2d31;
    border: 1px solid #1e1f22;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    width: 280px;
    margin-top: 0.5rem;
}

.timestamp-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #1e1f22;
    color: #f2f3f5;
    font-weight: 600;
    font-size: 0.9rem;
}

.timestamp-picker-header button:hover {
    color: #ffffff;
}

.timestamp-picker-body {
    padding: 1rem;
}

.timestamp-input-group {
    margin-bottom: 0.75rem;
}

.timestamp-input-group label {
    display: block;
    color: #b5bac1;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timestamp-input-group input {
    width: 100%;
}

/* Override date/time input styles */
.timestamp-input-group input[type="date"],
.timestamp-input-group input[type="time"] {
    color-scheme: dark;
}
