.sct-container {
    background: black;
    color: #5cb032;;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-radius: 15px;
    font-family: Arial, sans-serif;
    position: relative;
    width: fit-content;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.sct-message {
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
    text-transform: uppercase;
}

.sct-subtext {
    font-size: 16px;
    font-weight: normal;
    color: #FFD700;
    margin-right: 15px;
}

.sct-timer {
    display: flex;
    gap: 8px;
}

.sct-timer span {
    background: #5cb032;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sct-timer span small {
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
    text-transform: uppercase;
}

.sct-close {
    background: red;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    padding: 4px 8px;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 5px;
}


.sct-container-new {
    background: black;
    color: #5cb032;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.sct-message-new {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block; /* Message stays in first line */
}

.sct-timer-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.sct-time-box {
    background: #5cb032;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    min-width: 50px;
    text-align: center;
    position: relative;
}

.sct-time-label {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px; /* Moves label outside the box */
}

