@import '/css/commons.css';
@import '/css/nav.css';
@import '/css/footer.css';
@import '/css/spinner.css';

main {
    min-height: 75vh;
    padding: 2rem;
    background-color: #f5f5f5;
}

.main {
    background-color: #f5f5f5;
	position: relative;
	z-index: 1;
}

.container,
#content-area  {
	width: 80%;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container {
    width: 60%;
}

.title {
    margin-bottom: 20px;
}

p {
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
}

#legal-notice {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
}

/*h3 ~ * {
    padding-inline: 20px;
}*/

#cookies a {
    color: blue;
    text-decoration: underline;
    transition: color 0.3s ease;
}

#cookies a:hover {
    color: var(--unlink-users-btn-hover);
}

[name="change-cookies"] {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

[name="change-cookies"]:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .menu {
        padding-inline: 0;
    }
}