.custom-button {
    color: #560bad;
    font-family: inherit;
    display: inline-block;
    width: 15em;
    height: 2.6em;
    line-height: 2.5em;
    margin: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid #560bad;
    transition: color 0.5s, background 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    background: none;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.custom-button:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #560bad; /* Cor de fundo do botão */
    height: 150px;
    width: 200px;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.custom-button:hover {
    color: #fff; /* Cor do texto ao passar o mouse */
    background: #560bad; /* Cor de fundo do botão ao passar o mouse */
}

.custom-button:hover:before {
    top: -30px;
    left: -30px;
}

.custom-button:active:before {
    background: #3a0ca3; /* Cor de fundo do botão ao ser clicado */
    transition: background 0s;
}

.custom-button_2 {
    color: #560bad;
    font-family: inherit;
    display: inline-block;
    width: 20em;
    height: 2.6em;
    line-height: 2.5em;
    margin: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid #560bad;
    transition: color 0.5s, background 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    background: none;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.custom-button_2:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #560bad; /* Cor de fundo do botão */
    height: 150px;
    width: 200px;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.custom-button_2:hover {
    color: #fff; /* Cor do texto ao passar o mouse */
    background: #560bad; /* Cor de fundo do botão ao passar o mouse */
}

.custom-button_2:hover:before {
    top: -30px;
    left: -30px;
}

.custom-button_2:active:before {
    background: #3a0ca3; /* Cor de fundo do botão ao ser clicado */
    transition: background 0s;
}

.fundo-personalizado {
    background-color: #f0f0f0;
}

.custom-card-item {
    width: 40%;
}

.panel-body, .card-body, .card-item-content {
    padding: -60px !important;
}

/* Cabeçalho da janela */
.ui-draggable .ui-dialog-titlebar {
    border-radius: 10px 10px 0 0;  /* Bordas arredondadas somente na parte superior */
    background-color: #f8f9fa;  /* Cor neutra e suave */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);  /* Separador discreto do conteúdo */
    box-shadow: none;  /* Sem sombra no cabeçalho */
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Fundo da janela */
.ui-dialog {
    border-radius: 10px;  /* Bordas arredondadas completas */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);  /* Sombra mais intensa */
    background: rgba(255, 255, 255, 0.9);  /* Fundo com leve transparência */
    border: none;  /* Remover bordas extras */
    backdrop-filter: blur(10px);  /* Efeito de desfoque no fundo */
    overflow: hidden;  /* Evitar que qualquer elemento ultrapasse as bordas */
}

/* Parte do conteúdo da janela */
.window_modal {
    border-radius: 0 0 10px 10px;  /* Bordas arredondadas na parte inferior */
    padding: 15px;
    font-size: 14px;
    color: #555;
}