.word {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
}

.word:hover {
    background-color: #e9ecef;
    transform: scale(1.05);
}

.word.revealed {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

.word-cloud {
    min-height: 150px;
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
    border-radius: 10px;
    /*background-color: #f1f8ff;*/
}
.word-cloud .card {
    min-height: 270px;
}

#timerBar {
    transition: width 0.1s linear;
}
/* Cores aleatórias para níveis */
/*.word-cloud[data-level="1"] {
    background-color: #e3f2fd;
}

.word-cloud[data-level="2"] {
    background-color: #fff8e1;
}

.word-cloud[data-level="3"] {
    background-color: #f3e5f5;
}*/

/* Toast notification */
.toast {
    transition: opacity 0.5s ease;
}

#tituloNiveis h3{
    background: #1e1e1e;
    display: inline-block;
    border-radius: 8px;
    color: #fff;
    padding: 3px 5px;
    margin-bottom: 15px;
}
.estrela {
    height: 100px;
}
#captureScreenshot {
    margin-top: 0 !important;
    padding-left: 0;
}
#screenShot {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: #6039e0;
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 99;
    animation: pulse 2s infinite;
}
#screenShot i {
    color: #fff;
    font-size: 28px;
    padding-left: 2px;
    padding-top: 2px;
}
.socialWhatsapp {
    position: fixed;
    bottom: 5px;
    left: 47%;
    height: 50px;
    width: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.socialWhatsapp i {
    font-size: 40px;
    color: #fff;
}

/*Sugestões de Pesquisa*/
.pesquisa-box {
    /*margin-top: 15px;*/
    margin-bottom: 15px;
}
.pesquisa-box label {
    min-height: 60px;
}
.pesquisa-box .card {
    /*min-height: 270px;*/
}
.pesquisas-sugeridas {
    padding: 0;
}
.pesquisas-sugeridas li {
    padding: 8px;
    margin: 5px 0;
    background: #f8f9fa;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #dee2e6;
    min-height: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: auto;
}
.pesquisas-sugeridas li.completed {
    background: #d4edda;
    border-color: #c3e6cb;
}
.pesquisas-sugeridas li.completed a {
    color: #155724;
    text-decoration: none;
}

.action-button{
    position: relative;
    padding: 10px 40px;
    margin: 0px 10px 10px 0px;
    border-radius: 10px;
    /*font-family: 'Pacifico', cursive;*/
    font-size: 30px;
    color: #FFF;
    text-decoration: none;
    word-break: break-word;
    display: block;
    font-weight: 600;
}
.action-button:hover {
    color: #fff;
}
.yellow{
    background-color: #F2CF66;
    border-bottom: 5px solid #D1B358;
    text-shadow: 0px -2px #D1B358;
    color: #333;
}
.blue{
    background-color: #3498DB;
    border-bottom: 5px solid #2980B9;
    text-shadow: 0px -2px #2980B9;
}
.green{
    background-color: #82BF56;
    border-bottom: 5px solid #669644;
    text-shadow: 0px -2px #669644;
}
.action-button:active{
    transform: translate(0px,5px);
  -webkit-transform: translate(0px,5px);
    border-bottom: 1px solid;
}