main > .container {
    padding: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
}

a {
    color: #F2B705;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF8C00;
    text-decoration: underline;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 650px;
    width: calc(100% - 30px);
    background: rgba(20,20,20,0.97);
    border: 1px solid rgba(255,180,0,0.3);
    border-radius: 14px;
    padding: 18px;
    color: #eee;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
    z-index: 9999;
    text-align: center;
}

.cookie-text {
    margin-bottom: 14px;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-actions a {
    color: #f5b400;
    text-decoration: none;
}

.cookie-actions a:hover {
    color: #FF8C00;
    text-decoration: underline;
}

.cookie-actions button {
    background: #f5b400;
    border: none;
    color: black;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.cookie-actions button:hover {
    background: #ffd23a;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem;
}


.site-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #2B2B2B 100%);
    border-bottom: 1px solid rgba(242, 183, 5, 0.3);
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.global-logo {
    height: 350px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.site-index {
    background: linear-gradient(135deg, #1A1A1A 0%, #2B2B2B 100%);
    min-height: calc(100vh - 60px); /* Resta la altura del footer */
    padding: 60px 15px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.site-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, rgba(242, 183, 5, 0.03) 0px, transparent 1px, transparent 40px, rgba(242, 183, 5, 0.03) 41px),
        repeating-linear-gradient(0deg, rgba(242, 183, 5, 0.03) 0px, transparent 1px, transparent 40px, rgba(242, 183, 5, 0.03) 41px);
    opacity: 0.3;
}

.construction-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

.logo-construction {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(242, 183, 5, 0.3));
}

.construction-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #F2B705;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 0 20px rgba(242, 183, 5, 0.5);
}

.construction-title-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #F2B705;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 0 20px rgba(242, 183, 5, 0.5);
}

.construction-subtitle {
    font-size: 1.5rem;
    color: #F2F2F2;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.5s both;
}

.construction-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #F2F2F2;
    animation: fadeInUp 1s ease 0.7s both;
}

#footer {
    background-color: #1A1A1A !important;
    border-top: 1px solid #F2B705;
}

#footer .text-muted {
    color: #8A8A8A !important;
}

.page-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.error-404-box {
    background: rgba(231, 76, 60, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}