.clsWord {
    color: #eaecef;
}

H2 {
    color: #eaecef;
}

.form-label {
    color: #eaecef;
}

.clsWord {
    border: 1px solid #eaecef;
    padding: 5px 5px 5px 5px;
    margin: 10px 10px 10px 10px;
    border-radius: 10px;
    width: 140px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    font-size: 22px;
}

body {
    background-color: #181A20;
    padding-top: 50px;
    padding-bottom: 20px;
}

P {
    text-align: center;
    color: #eaecef;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.Words {
    margin-top: 30px;
    text-align: center;
}

.WordGroup {
    border: 1px solid #FF0000;
    border-radius: 10px;
    margin: 0px 20px 0px 20px;
    padding: 20px 20px 20px 20px;
}

/* Notification Container */
.toast {
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: #000000;
    color: #eaecef;
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid #FF0000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    
    
    /* Hidden by default state */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Visible State */
.toast.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.toast-close {
    background: none;
    border: none;
    color: #eaecef;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
}

.toast-close:hover {
    color: #eaecef;
}

.form-range-red {
  --bs-form-range-thumb-bg: red; 
  --bs-form-range-thumb-active-bg: red;
  --bs-form-range-thumb-focus-box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}