.egg-presets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-bottom: 1rem;
}

.preset-button {
    line-height: 1.2;
}

.preset-button small {
    opacity: .75;
}

.egg-icon-buttons img {
    width: 24px;
    height: 24px;
}
.egg-icon-buttons .btn {
    color: var(--tblr-secondary);
}

.egg-icon-buttons .btn-check:checked + .btn {
    color: var(--tblr-primary);
}
.timer-inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.timer-readout {
    display: grid;
    place-items: center;

    margin: 1.25rem 0 .25rem;
    padding: 1rem;

    border: 1px solid var(--tblr-border-color);
    border-radius: var(--tblr-border-radius);

    background: var(--tblr-bg-surface-secondary);
}

.timer-readout output {
    color: var(--tblr-primary);

    font-family: var(--tblr-font-monospace);
    font-size: clamp(3rem, 13vw, 5.5rem);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 1;
}

.timer-status {
    min-height: 1.5rem;
    margin: 0;
    text-align: center;
}

.egg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}