        body {
            font-family: 'Nunito', sans-serif;
            background-color: #f0f0f0;
            color: #333;
            margin: 0;
            padding: 0;
            height: 100vh;
            overflow: auto;
        }

.container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    overflow: hidden;
}

.box {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative; /* Permite posicionar o ícone corretamente */
}

.icon-admin {
    font-size: 24px;
    color: #333;
}

.icon-admin:hover {
    color: #007bff;
}

h1 {
    flex-grow: 1; /* Permite que o título ocupe o espaço disponível */
    text-align: center; /* Centraliza o texto do título */
}

#links-admin-list li {
    margin-top: 10px;
    border-radius: 8px;
}


.icon-picker {
    gap: 10px;
}

.icon-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.icon-option i {
    font-size: 18px;
    margin-bottom: 5px;
}

.icon-option span {
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
}

.icon-option:hover {
    background-color: #f0f0f0;
    border-color: #007bff;
}

.icon-option.active {
    background-color: #007bff;
    color: white;
}
