.resume-notification {
    position: fixed;
    bottom: 100px;
    left: 8px;
    right: 8px;
    background-color: #0a0a2a;
    border-radius: 10px;
    /* padding: 16px 12px; */
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 10px;
    padding-bottom: 12px;
    z-index: 1000;
    color: white;
    box-shadow: 0 4px 12px rgba(80, 100, 255, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.resume-notification.show {
    opacity: 1;
}

.resume-notification-text {
    display: inline;
    font-size: 14px;
    vertical-align: middle; /* Выравнивание текста по вертикали */
    line-height: normal; /* Нормализация высоты строки */
    margin-right: 4px;
}

.resume-notification-button {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #90e0ff;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: underline;
    font-weight: normal;
    display: inline;
    margin: 0;
    box-shadow: none;
}

.resume-notification-close {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    padding: 0;
    margin-top:0;
    margin-left: 0;
    margin-left: auto; /* Выталкивает крестик вправо */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    box-shadow: none;
    font-weight: normal;
}

.resume-notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    overflow: hidden;
    border-radius: 10px;
}

.resume-notification-progress-bar {
    height: 100%;
    width: 100%;
    background-color: #90e0ff;
    transition: transform 0.1s linear;
    transform-origin: left;
    border-radius: 10px;
}

.resume-notification-button:hover {
    background-color: none;
}
