.current-datetime-card {
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 280px;
    max-width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 1rem;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 35%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.25);
    color: #e2e8f0;
}

.current-datetime-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    line-height: 1.15;
    text-align: right;
}

.current-datetime-icon {
    width: 1rem;
    height: 1rem;
    color: #22d3ee;
    flex: 0 0 auto;
}

.current-datetime-date {
    font-size: 0.84rem;
    font-weight: 600;
    color: #cbd5e1;
}

.current-datetime-time-row {
    color: #67e8f9;
}

.current-datetime-time {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.dashboard-current-datetime-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(51, 65, 85, 0.75);
    border-radius: 1.25rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.55);
}

.dashboard-current-datetime-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .dashboard-current-datetime-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .current-datetime-card {
        width: 100%;
        min-width: 0;
    }

    .current-datetime-row {
        justify-content: flex-start;
        text-align: left;
    }
}
