/* GDPR Map - Common Styles */

/* Base Styles */
html {
  height: 100%;
}

body {
    background: #f8f9fa;
    color: #333;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.navbar-brand img {
    height: 52px;
}

.navbar-nav .nav-link {
    color: #0e204b;
    font-weight: bold;
    margin-left: 15px;
}

.navbar-nav .nav-link:hover {
    color: #0055aa;
}

.language-flags {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.language-flags img {
    height: 20px;
    width: 30px;
    margin-left: 10px;
    object-fit: cover;
}

/* Layout */
.container-custom {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    /* min-width: 300px;
    max-width: 380px; */
    height: fit-content;
}

.content {
    flex: 3;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* min-width: 600px; */
}

/* Accordion */
.content .accordion-header {
    color: #0e204b;
    margin-top: 1rem;
}

#recitalsAccordion .accordion-item:first-child .accordion-header {
    margin-top: 0;
}

.content .accordion-button{
  border-radius: 5px !important;
}

.accordion-button {
    background-color: #0e204b;
    color: white;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
    background-color: #0e204b;
    color: white;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-item ul li {
    margin-bottom: 6px;
}

.accordion-body a {
    color: #0e204b;
    font-weight: normal;
    text-decoration: none;
}

.accordion-body a.active {
    font-weight: bold !important;
    color: #0055aa !important;
}

.accordion-body a:hover {
    color: #0055aa;
    text-decoration: underline;
}

/* Links */
.list-group-item a {
    text-decoration: none;
    color: #0e204b;
}

.list-group-item a:hover {
    color: #0055aa;
    text-decoration: underline;
}

#quick-access a.quick-access-link {
    color: #0e204b;
    text-decoration: underline;
}

#quick-access a.quick-access-link:hover {
    color: #0055aa;
    text-decoration: none;
}

/* Text Utilities */
.indent {
    margin-left: 2em;
    text-indent: -1.5em;
}

.text {
  margin-bottom: 1rem;
}

/* Footer */
footer {
    margin-top: auto;
    background: #0e204b;
    color: white;
    padding: 15px 0;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    height: 60px;
}

footer p {
    margin: 0;
}

/* Article Pagination */
.content nav.mt-4.d-flex {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1rem;
    margin-top: 1rem;
}

.content nav.mt-4.d-flex .btn-outline-primary {
    border-color: #0e204b;
    color: #0e204b;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.content nav.mt-4.d-flex .btn-outline-primary:hover {
    background-color: #0e204b;
    color: #ffffff;
    border-color: #0e204b;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.content nav.mt-4.d-flex .btn-outline-primary:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 85, 170, 0.25);
}

.content nav.mt-4.d-flex .btn-outline-primary.ms-auto {
    text-align: right;
}

/* Responsive Design */
/* Tablet and Mobile */
@media (max-width: 768px) {
    /* Hide sidebar on mobile */
    .sidebar {
        display: none;
    }
}