.timer {
    position: relative;
    background-color: var(--cardBackground);
    border-radius: 12px;
    transition: background-color 0.4s ease;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    color: var(--textPrimary);
}

.timer:hover {
    background-color: var(--cardBackgroundHover);
}

.timer_display {
    font-family: "Roboto Mono", monospace;
    font-size: 1.4em;
    color: var(--accentPri);
    font-weight: 600;
    margin: auto auto auto 0;
}

.timer_display .icon {
    margin-right: 4px;
}


@media (min-width: 480px) {
    .timer_display {
        font-size: 2em;
    }
}

/* Timer Value Styling */
.hours {
    font-weight: 600;
    opacity: 1;

}
.minutes {
    font-weight: 400;
    opacity: 0.8;

}
.seconds {
    font-weight: 100;
    opacity: 0.6;
}
.colon {
    opacity: 0.3;
}



.timer_actions {
    display: flex;
    gap: 12px;
    margin: auto 0 auto auto;
}

.timer_action a {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    display: flex;
    background-color: var(--actionBackgroundPri);
    color: var(--accentPri);
    transition: background-color 0.3s ease;
}

@media (min-width: 480px) {
    .timer_action a {
        height: 50px;
        width: 50px;
        border-radius: 25px;
    }
}

.timer_action a .icon {
    margin: auto;
    transition: color 0.3s ease;
}

.timer_action a:hover {
    background-color: var(--accentPri);
}

.timer_action a:hover .icon {
    color: #fff;
}

.timer_customer {
    display: flex;
    font-size: 1.1em;
    column-span: all;
    grid-column: 1 / span-2;
    margin-bottom: 20px;
    margin-top: 16px;
}

.timer_shortcode {
    color: var(--textTertiary);
    padding-right: 4px;
}

.timer_company {
    font-weight: 600;
}

.timer_details {
    grid-column: 1 / span-2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-direction: column;
}


@media (min-width: 480px) {
    .timer_details {

        flex-direction: row;

    }
}




.timer_project, .timer_activity, .timer_note {
    padding: 8px 16px;
    background-color: var(--actionBackgroundSec);
    border-radius: 4px;
}

.timer_project .icon , .timer_activity .icon, .timer_note .icon {
    margin-right: 4px;
}

.timer_project {
    color: var(--accentPri);
}

.timer_activity {
    color: var(--accentSnd);
}

.timer_note {
    color: var(--accentTer);
}


/****** TIMER UPDATE ********/

.timer_update {
    display: grid;
    background-color: var(--formBackgroundActive);
    border-radius: 4px;
    margin-top: 16px;
    grid-column: 1 / span 2;
    padding: 16px;
}

.timer_update h4 {
    margin-bottom: 20px;
    text-align: center;
}

.timer_update .update_select {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timer_update .select_entry {
    text-align: center;
    padding: 12px 0;
    border-radius: 4px;
    background-color: var(--formBackgroundActive);
    transition: background-color 0.3s ease;
}

a .select_project {
    color: var(--accentPri);
}

a .select_activity {
    color: var(--accentSnd);
}

a .select_note {
    color: var(--accentTer);
}

.timer_update .select_entry:hover {
    background-color: var(--actionBackgroundPriHover);
}

.hidden {
    display: none;
}



