
.ettp-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200000;

    display: flex;
    max-width: 430px;
    align-items: flex-start;
    gap: 10px;

    padding: 14px 16px;
    border-radius: 13px;

    background: #166534;
    color: #ffffff;

    font-weight: 800;
    line-height: 1.45;

    box-shadow:
        0 15px 40px
        rgba(15, 23, 42, .25);
}

.ettp-toast.error {
    background: #991b1b;
}

.ettp-toast[hidden] {
    display: none;
}

.ettp-state-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 7px;

    margin-top: 10px;
    padding: 7px 10px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
}

.ettp-state-badge.working {
    background: #dcfce7;
    color: #166534;
}

.ettp-state-badge.finished-today {
    background: #fef3c7;
    color: #92400e;
}

.ettp-resume-button {
    background: #16a34a !important;
    color: #ffffff !important;
}

.ettp-finish-button {
    background: #f59e0b !important;
    color: #451a03 !important;
}

.ettp-last-worker-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 12px;
    padding: 13px;

    border-radius: 11px;

    background: #eff6ff;
    color: #1e40af;
}

.ettp-last-worker-info > i {
    margin-top: 2px;
    font-size: 20px;
}

.ettp-last-worker-info strong,
.ettp-last-worker-info span {
    display: block;
}

.ettp-last-worker-info span {
    margin-top: 4px;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .ettp-toast {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
    }
}
