/* Stile per la pagina principale */
#main-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Style for the title */
#main-content h2 {
    margin: 0;
    padding: 10px 0;
    text-align: center;
}

.channel-grid input {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

/* Style for the textarea to fill the remaining space */

/* Stile per il popup delle impostazioni avanzate */
#advanced-settings {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    padding: 20px;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Assicura che sia in primo piano */
}

/* Sfondo scuro per effetto di secondo piano */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999; /* Sopra il contenuto principale, ma sotto le impostazioni */
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Add CSS to style the gear button */
.gear-button {
    padding: 0px;
    background-color: transparent;
    color: #868686;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 50px;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.close-button {
    color: #868686;
}

.gear-button:hover {
    color: #606060;
}

.close-button:hover {
    color: #606060;
}


.inline-label-input {
    display: flex;
    flex-direction: column;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}
