form {
    display: flex;
    flex-wrap: wrap;
}

.two-cols {
    width: 85%;
}

.one-col {
    width: 41.25%;
}

.input-div {
    margin-bottom: 15px;
}

.one-col .input-div {
    width: 100%;
}

.two-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5%; /* Ajuste de espaçamento entre os itens */
}

.two-cols .input-div {
    max-width: 48.75%;
    flex: 1 1 48.75%; /* Largura flexível dos itens */
    margin-bottom: 15px;
}

.two-cols .input-div.switch {
    max-width: 10.25%;
}

.one-col .input-div.switch {
    max-width: 25%;
}

.two-cols .button {
    width: 48.75%;

    margin-left: 51.25%;
}

.input {
    width: 100%;
    height: 45px;

    background-color: #f7f7f7;

    margin-top: 7.5px;

    padding: 0 15px;

    border-radius: 5px;

    outline: 1px solid #e7e7e7;

    cursor: text;

    display: flex;
    align-items: center;
    
    position: relative;
}

.input-switch {
    width: 100%;
    height: 45px;

    margin-top: 7.5px;

    display: flex;
    align-items: center;
}

label, .label {
    font-size: 12.33px;
    font-weight: bold;
}

input {
    width: 100%;

    font-family: Arial, Helvetica, sans-serif;

    background-color: #f7f7f7;

    border: none;

    outline: none;
}

button, .button {
    width: 100%;
    height: 45px;

    font-size: 15.33px;
    font-weight: bold;

    background-color: var(--primary-color);
    color: #fff;

    border: none;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
}

button:hover, .button:hover {
    background-color: var(--secondary-color);
}

.warn {
    display: none;
    color: #EB1000;
    font-size: 11.33px;
    font-weight: bold;
    margin-top: 7.5px;
}

.dropdown {
    width: 100.25%;
    max-height: 300px;
    
    background-color: #fff;
    
    padding: 3px 0;

    outline: 1px solid #e7e7e7;
    border-radius: 0 0 5px 5px;
    
    display: none;
    
    position: absolute; 
    
    top: 45px;
    left: -0.1%;
    
    z-index: 999;
    
    overflow-y: auto;
}

.dropdown .item {
    width: 100%;
    height: 45px;
    
    font-size: 14.5px;

    padding-left: 12.5px;
    
    display: flex;
    align-items: center;
    
    position: relative;

    cursor: pointer;
}

.item:hover {
    background-color: #f7f7f7;
}

.item .icon {
    margin-right: 10px;
}

.input .circle-button {
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    -webkit-user-drag: none;
    user-select: none;

    position: absolute;
    right: 15px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: auto;
}

.tag {
    padding: 5px; 
    border-radius: 5px; 
    color: #000; 
    background-color: #e9e9e9; 
    margin: 2.5px;
    margin-top: 7.5px;
    font-size: 11.33px;
    
    display: flex;
    align-items: center;

    cursor: pointer;
}
.tag:hover {
    background-color: #d9d9d9;
}
.tag span {
    font-size: 10px;
    color: #000;
    margin-right: 5px;
}

.toggle-button-0 {
    width: 35px;
    height: 27px;

    background-color: #ccc;
    
    border-radius: 20px;

    padding: 6px;
    
    display: flex;
    justify-content: left;
    align-items: center;
}
.toggle-button-1 {
    width: 35px;
    height: 27px;

    background-color: green;
    
    border-radius: 20px;

    padding: 6px;
    
    display: flex;
    justify-content: right;
    align-items: center;
}
.circle {
    width: 15px;
    height: 15px;

    background-color: #fff;
    
    border-radius: 50%;
}

input[type="checkbox"] {
    cursor: pointer;
}

.ql-toolbar {
    border-radius: 5px 5px 0 0;

    background-color: #f7f7f7;
}

.ql-editor h1 {
    font-size: 16px; /* Tamanho para "Grande" */
    font-weight: normal; /* Remove o negrito */
    margin-bottom: 0.5em;
}

.ql-editor h2 {
    font-size: 14px; /* Tamanho para "Médio" */
    font-weight: normal; /* Remove o negrito */
    margin-bottom: 0.5em;
}

.ql-editor h3 {
    font-size: 12px; /* Tamanho para "Pequeno" */
    font-weight: normal; /* Remove o negrito */
    margin-bottom: 0.5em;
}

#editor-container {
    min-height: 500px;
    height: 500px;
    min-width: 100%;
    max-width: 100%;

    background-color: #f7f7f7;

    border-radius: 0 0 5px 5px;

    outline: none;
    margin-bottom: 15px;
}

.liAnexos {
    width: 100%;
    
    background-color: #E9F4FF;
    
    border-radius: 5px;
    
    display: flex;
    align-items: center;
    
    padding: 15.25px;
    
    position: relative;
    
    border: 1px solid #C6DAEF;
    
    margin-top: 3.5px;
}
.liAnexos .icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
}
.liAnexos .file-download {
    position: absolute;
    right: 45px;
    cursor: pointer;
    color: #000;
}
#filesDiv {
    width: 100%; 
    
    display: none; 
    flex-wrap: wrap;
}
#listaAnexos {
    width: 100%; 
    list-style-type: none;
}
.directory {
    background-color: #f7f7f7; 
    border: 1px solid #ccc; 
    cursor: pointer;
}