﻿.dialogTiivo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialogTiivo-box {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dialogTiivo-box h3{
    font-size: 22px;
    text-align: left;
    font-weight: bold;
}

.dialogTiivo-box p{
    text-align: left;
}

.dialogTiivo-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.dialogTiivo-btn-confirm {
    background-color: #0ea3ce;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 25%;
    font-weight: bold;
}

.dialogTiivo-btn-cancel {
    background-color: #eb2211;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 25%;
    font-weight: bold;
}

/*Lista de Empresa*/
.empresa-lista {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
}

.empresa-item {
    padding: 10px;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.empresa-item:hover {
    background-color: #f0f0f0;
}

.empresa-item.selecionada {
    background-color: #d0f0d0;
    font-weight: bold;
}