/* Description: Description of the file
Create: 2026-06-11
Update: 2026-06-11 22:34:34
Workspace: AntSoftWSPHP
Relative path: vendor\css\wordscount.css
Autor(s): William Costa Rodrigues
Copyright(c) 2026, William Costa Rodrigues
Dependency: Informe the dependencies
*/
@import url('https://fonts.googleapis.com/css2?family=Pushster&display=swap');

#word-cloud-html {
    min-height: 450px !important;
    width: 100%;
    background-color: transparent !important;
}

.word-cloud-container {
    display: flex;
}

.word-cloud-card {
    width: 100%;
}

.word-cloud-title {
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    text-decoration: underline;
}

#word-cloud-canvas-hover-box {
    pointer-events: none;
    position: absolute;
    box-shadow: 0 0 200px 200px rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    border-style: solid;
    cursor: pointer !important;
}

#word-cloud-html>span {
    transition: text-shadow 1s ease, opacity 1s ease;
    -webkit-transition: text-shadow 1s ease, opacity 1s ease;
    -ms-transition: text-shadow 1s ease, opacity 1s ease;
}

#word-cloud-html>span:hover {
    text-shadow: 0 0 10px, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
    opacity: 0.5;
    cursor: pointer !important;
}