/* Spelling Shared Styles - Teal Theme */

/* Text gradient - Teal theme */
.text-gradient-spelling {
    background: linear-gradient(135deg, #84DCC6 0%, #68BCA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Active List Banner */
.active-list-banner {
    background: linear-gradient(135deg, #84DCC6 0%, #68BCA8 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(132, 220, 198, 0.3);
}

.active-list-banner h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.active-list-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.active-list-info i {
    font-size: 2rem;
}

.btn-change-list {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-change-list:hover {
    background: white;
    color: #84DCC6;
}

/* Words Grid Container */
.words-grid {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.words-grid h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Individual Word Badges */
.word-badge {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.word-badge:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* For use on settings pages (without the teal background) */
.words-grid-white {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e9ecef;
}

.words-grid-white h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #84DCC6;
}

.word-badge-white {
    background: white;
    border: 2px solid #84DCC6;
    color: #2d8a75;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.word-badge-white:hover {
    background: rgba(132, 220, 198, 0.1);
    transform: translateY(-2px);
}