.egs-pagination {
    text-align: center;
    margin-bottom: 20px;
}

.egs-dot {
    height: 5px;
    width: 25px;
    background-color: #bbb;
    display: inline-block;
    margin: 0 5px;
    transition: background-color 0.3s;
}

.egs-dot.active {
    background-color: #073B4C;
}

.egs-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.egs-col {
    flex: 1;
}

.egs-col.text-right {
    text-align: right;
}

.egs-step {
    width: 100%;
    display: block;
}

.egs-step-footer {
  margin-top: 20px;
}

.egs-button {
    font-size: 24px;
    font-weight: bold;
    background: #20C499;
    border: 0;
    color: #fff;
    border-radius: 20px;
    margin-right: 10px;
}

.egs-button:hover {
    background: #081E26;
}

textarea.large-text {
    width: 100%;
    height: 150px;
}

.egs-error {
    border: 2px solid red;
}

.egs-error-tooltip {
    position: relative;
    display: inline-block;
}

.egs-error-tooltip::after {
    content: attr(data-error); /* Exibe a mensagem de erro */
    position: absolute;
    background-color: #ff0000;
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    font-size: 18px;
    bottom: 70px; /* Ajuste para posicionar o tooltip acima do campo */
    right: 20px;
    white-space: nowrap;
    z-index: 1000;
    display: none; /* Oculta por padrão */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.egs-error-tooltip.egs-show-tooltip::after {
    display: block;
    opacity: 1; /* Exibe o tooltip com animação */
}

.egs-multi-step-form textarea {
    width: 100% !important;
    border-radius: 20px;
}

.egs-multi-step-form textarea:read-only {
    font-size: 14px;
    color: #777;
}

.egs-textarea-container {
    position: relative;
}

.egs-textarea-container .egs-copy-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #333;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 3px;
    font-weight: bold;
    opacity: 0;
}

.egs-textarea-container:hover .egs-copy-btn {
    opacity: 1;
}

.egs-copy-btn i {
    margin-right: 5px;
}

.egs-copy-btn:hover {
    background-color: #005880;
}

.egs-restart-btn {
    background: #FFD166;
}

.egs-detector-options {
    padding: 20px;
    text-align: center;
}

.egs-detector-options label {
    font-size: 20px;
    margin-right: 30px;
}