.content {
    display: flex;
    flex-direction: column;

    .header {
        background-color: var(--light-green);
        height: 4em;
        display: flex;
        align-items: center;
        padding: 0 0.5em;

        img {
            height: 3em;
        }
    }

    .in-content {
        align-self: center;
        display: flex;
        flex-direction: column;
        padding: 1em;
        gap: 2em;
        max-width: 600;
        margin-top: 2em;

        .title {
            align-self: center;
            font-size: 1.5em;
            font-weight: bold;
        }

        .wrap {
            padding: 1em;
            border: 1px solid #ddd;
            border-radius: 2em;
            box-shadow: 0 0 5px 1px #ddd;
        }

        .ustanoveni {
            height: 20em;
            overflow-y: auto;
        }

        .bundle {
            display: flex;
            flex-direction: column;
            gap: 1em;

            .title {
                align-self: self-start;
                padding-left: 0.5em;
                font-size: 1.3em;
            }

            .hint {
                padding: 0 1em;
            }
        }

        .souhlas {
            display: flex;
            gap: 1em;
            align-items: center;
            justify-content: center;
            color: var(--dark-blue);
        }

        .submit {
            cursor: pointer;
            border: none;
            color: white;
            background-color: var(--dark-blue);
            padding: 0.4em 1em;
            width: min-content;
            white-space: nowrap;
            align-self: center;
            font-size: 1.1em;
            border-radius: 2em;
        }

        .submit:disabled {
            background-color: #ccc !important;
            cursor: not-allowed;
        }

        .mess {
            border: 1px red solid;
            margin: 1em;
            padding: 1em;
            color: red;
            text-align: center;
            border-radius: 5px;
        }
    }
}

.admin_message {
    border: 1px solid red;
    color: red;
    padding: 0.3em 1em;
    border-radius: 1em;
}