/* ========================================
   BARRA SUPERIOR - Idioma y Login
   ======================================== */

.pkp_head_top_bar {
    background-color: #33691e; /* Verde oscuro como UdeA */
    padding: 8px 0;
}

.pkp_head_top_bar_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Selector de idioma */
.pkp_language_selector {
    position: relative;
}

.pkp_language_selector select {
    background: transparent;
    border: none;
    color: white;
    padding: 6px 30px 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.pkp_language_selector select:hover {
    border-color: white;
}

.pkp_language_selector select option {
    background: #2e7d32;
    color: white;
}

/* Navegación de usuario en barra superior */
.pkp_head_user_nav .pkp_navigation_user_top {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.pkp_head_user_nav .pkp_navigation_user_top li {
    margin: 0;
}

.pkp_head_user_nav .pkp_navigation_user_top a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.pkp_head_user_nav .pkp_navigation_user_top a:hover {
    text-decoration: underline;
}

/* Ocultar menú de usuario duplicado en nav principal */
#navigationUserWrapper {
    display: none !important;
}

/* ========================================
   HEADER - Título y Logo institucional
   ======================================== */

.pkp_site_header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px;
}

/* Título del sitio */
.pkp_site_title {
    flex: 1;
}

.site_title_link {
    text-decoration: none;
    color: white;
}

.site_title_text {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 42px;
    font-weight: normal;
    font-style: bold;
    color: white;
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 3px solid white;
}

.site_title_link:hover .site_title_text {
    opacity: 0.9;
}

/* Logo institucional */
.pkp_institution_logo {
    flex-shrink: 0;
    margin-left: 40px;
}

.pkp_institution_logo img {
    max-height: 80px;
    width: auto;
}

.pkp_institution_logo a:hover {
    opacity: 0.9;
}

/* Ocultar el contenedor original del nombre del sitio */
.pkp_site_name {
    display: none;
}

.pkp_structure_footer_wrapper {
    background-color: #33691e;
}

div.pkp_footer_content > p {
    text-align: center;
    color: white;
}

div.pkp_footer_content > p > a{
    font-weight: bold;
    color: white;
}

.pkp_brand_footer {
    display: none;
}

.pkp_navigation_primary_row {
    text-align: -webkit-center;
}