#home:has(.permissions-container) 
{
    h1 {
        margin-top: 2rem;
        width: 100%;
        text-align: center;
    }

    form {
        max-width: 60rem;
        margin: auto;
    }

    form > p {
        text-align: center;
        width: 100%;
    }

    .buttons {
        display: flex;
        flex-direction: row;
        gap: 3px;
        justify-content: center;
    }

    form > div {
        margin-block: 5px;

        .errorlist {
            text-align: center;
            grid-column: 1 / span 2;
            grid-row: 2;
            padding-block: 0px;
            margin-block: 0px;
        }
    }

    form > div:has(.errorlist) > input {
        grid-column: 2;
        grid-row: 1;
    }

    form > div:has(>:is(input, select:not([multiple]))) {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        margin-bottom: 5px;
        column-gap: 20px;
        label {
            grid-column: 1;
            text-align: right;
        }
        input, select {grid-column: 2;}
        input {max-width: 10rem;}
        select {max-width: 10.5rem;}
    }

    form > div .helptext {
        display: none;
    }

    
    /* form > div:hover .helptext {
        display: block;
        position: absolute;
        left: 5%;
        width: 90%;
        top: 0;
        color: var(--primary-disabled-color);
        font-weight: bold;
        text-align: center;
    } */
}

.settings-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.settings-container > select {
    width: 10rem;
}