.widget-window {
    background-color: white;
    display: flex;
    flex-direction: column;
    border: 1px #dddddd solid;
    margin-bottom: 25px;
}

.widget-window-head {
    text-transform: uppercase;
    height: 64px;
    padding: 15px 0;
    display: flex;
    flex-direction: row;
    border-bottom: 1px #dddddd solid;
}

.widget-window-head h1 {
    flex: 1;
    padding: 0 15px;
    color: #093eaa;
}

.widget-window-actions {
    display: flex;
    flex-direction: row;
    padding: 0 15px;
    justify-content: center;
    align-items: center;
}

.widget-window-head .link {
    list-style: none;
    margin: 5px;
    background-color: white;
    font-size: 26px;
}

.widget-window-head .link:hover {
    cursor: pointer;
    text-decoration: none;
}

.widget-window-footer {
    text-transform: uppercase;
    padding: 15px 0;
}

.calendar {
    display: flex;
    flex-direction: column;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    height: 45px;
    margin-bottom: 15px;
}

.calendar-header h1 {
    font-size: large;
    align-self: center;
    text-transform: uppercase;
}

.calendar-buttons {
    display: flex;
    margin-bottom: 15px;
    gap: 2px;
}

.calendar-buttons .bt-left {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.calendar-buttons .bt-right {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.calendar-buttons button {
    height: 40px;
    background-color: #093e8c;
    color: white;
    font-weight: bold;
    padding: 0 20px;
    border: none;
}

.calendar-buttons button:hover {
    cursor: pointer;
}

.calendar-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.calendar-table .calendar-titles {
    display: flex;
    justify-content: space-between;
    border: 1px solid #DDDDDD;
}

.calendar-table .calendar-titles div {
    width: 100%;
    padding: 5px;
    font-weight: bold;
    color: #093e8c;
    border: 1px solid #DDDDDD;
    text-align: center;
}

.calendar-days {
    display: flex;
    flex-direction: column;
}

.calendar-week {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-left: 1px solid;
    border-color: #DDDDDD;
}

.calendar-day {
    width: 100%;
    min-width: 120px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: #DDDDDD;
}

.calendar-day span {
    text-align: right;
    padding: 5px;
    font-weight: bold;
    color: #093e8c;
}

.calendar-empty {
    color: #ccc;
    background-color: #DDDDDD;
    border-color: white;
}

.calendar-item {
    font-size: small;
    padding: 10px;
    margin: 10px;
    margin-top: 0;
    border-radius: 5px;
    font-weight: bold;
    font-family: Roboto;
}

.calendar-item:hover {
    cursor: pointer;
}

.color-evento {
    background-color: rgb(157, 195, 230);
}

.color-ferias {
    background-color: rgb(255, 245, 204);
}

.color-entrega-avaliacao {
    background-color: rgb(169, 209, 142);
}

.color-avaliacao {
    background-color: rgb(244, 177, 131);
}

.color-feriado {
    background-color: rgb(219, 0, 0);
}

.filtros {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.filtros .field {
    flex: 1;
    width: 100%;
}

.filtros .field legend {
    margin-bottom: 5px;
    font-weight: bold;
}

.formulario {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 10px;
}

.formulario .field {
    max-width: 500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* horizontal */
    align-items: center;
    /* vertical */
}

.formulario .field legend {
    min-width: 150px;
    text-align: right;
    margin-right: 5px;
    font-weight: bold;
}

/*========== style buttons ==========*/
.button {
    min-width: 150px;
    border: none;
    color: white;
    padding: 12px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.button-green {
    background-color: #04AA6D;
}

/* Green */
.button-blue {
    background-color: #008CBA;
}

/* Blue */
.button-red {
    background-color: var(--cor-primaria);
}

/* Red */
.button-black {
    background-color: black;
    color: #e7e7e7;
}

/* Gray */
.button-gray {
    background-color: #555555;
}

/* Black */

.button-green:hover {
    background-color: #03724A;
}

.button-blue:hover {
    background-color: #005875;
}

.button-red:hover {
    background-color: #A30000;
}

.button-black:hover {
    background-color: #303030;
}

.button-gray:hover {
    background-color: #3B3B3B;
}

/*========== style buttons ==========*/

.hidden {
    display: none;
}

.active {
    background: #3498db;
    color: #fff;
}

.board {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    overflow-x: auto;
}

.column {
    background: #e2e4e6;
    border-radius: 10px;
    width: 100%;
    padding: 10px;
}

.column h3 {
    text-align: center;
    color: black;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    font-size: medium;
}

.card {
    background: white;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    cursor: grab;
    color: #3a3a3a;
}

.card.dragging {
    opacity: 0.5;
}

.column.drag-over {
    color: black;
    background: #3f3f3f;
}

.tabs {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid #ccc;
}

.tabs button {
    min-width: 35px;
    padding: 10px;
    border: none;
    cursor: pointer;
    /* background: #bbb; */
    border-radius: 5px;
}

.tabs button:hover {
    background: #999;
}

.tab-content {
    width: 100%;
    background-color: white;
    padding: 25px;
    margin-bottom: 25px;
}