    .pkp_site_name .is_img img {
        max-height: 100%;
    }


.pkp_brand_footer {
    visibility: hidden;
}

.pkp_site_name {
    text-align: center; /* Centrează conținutul (imaginea) pe orizontală */
    width: 100%;       /* Se asigură că div-ul ocupă toată lățimea */
    display: block;    /* Se asigură că este element de tip bloc */
}

.pkp_navigation_primary_wrapper {
    margin-top: 10px;
}

.pkp_structure_main h1, .pkp_structure_main h2, .pkp_structure_main h3, .pkp_structure_main h4 {
    color: #18527d;
}

/* =========================================
   STILURI CONFERINTA (Varianta Safe)
   ========================================= */

/* 1. Container Principal */
.conf-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}


/* 2. Header (Banner cu Imagine ACADEMICA Noua) */
/* 2. Header (Banner VARIANTA 2: Imagine Facebook + Spațiere Text Mărită) */
.conf-header {
    position: relative;
    background-color: #003F7F; 
    
    /* Imaginea ta de pe Facebook */
    /* Imaginea ta de pe Facebook cu filtru #003F7F */
background-image: 
    /* Gradient folosind culoarea #003F7F (convertită în RGBA pentru transparență) */
    linear-gradient(rgba(0, 63, 127, 0.75), rgba(0, 63, 127, 0.95)),
    
    /* URL-ul imaginii */
    url('https://econ-conf.usv.ro/index.php/iec/libraryFiles/downloadPublic/10');
        
    background-size: cover;
    
    /* Poziționare: center center (standard) sau center top (dacă vrei să eviți tăierea capetelor publicului) */
    background-position: center center; 
    
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    
    /* Padding generos */
    padding: 140px 20px; 
    
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 20, 40, 0.5);
    text-shadow: 0 4px 30px rgba(0,0,0,0.95);
}

/* --- STILIZARE TITLU CU SPAȚIERE MARE --- */
.conf-header h1 {
    color: #fff !important;
    
    /* Font mare */
    font-size: 3em; 
    text-transform: uppercase;
    letter-spacing: 3px; 
    font-weight: 800;

    /* MODIFICĂRI PENTRU SPAȚIERE: */
    line-height: 1.5;      /* Distanță mai mare între rândurile titlului */
    margin-top: 25px;      /* Distanță față de data de sus */
    margin-bottom: 40px;   /* Distanță MARE față de numele universității de jos */
}

/* --- STILIZARE UNIVERSITATE/LOCAȚIE --- */
.conf-header p {
    font-size: 1.6em; 
    font-weight: 500;
    opacity: 1; 
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;

    /* MODIFICARE PENTRU SPAȚIERE: */
    line-height: 1.8;      /* Textul "respiră" mai mult */
}

/* --- STILIZARE DATĂ (BADGE) --- */
.conf-date-badge {
    /* SCHIMBARE CULOARE: Auriu (Gold) care se asortează perfect cu albastrul închis */
    background: #f1c40f; 
    
    /* Textul rămâne albastru închis pentru a fi lizibil pe fundalul auriu */
    color: #003366; 
    
    display: inline-block;
    padding: 12px 35px; 
    border-radius: 50px;
    font-weight: 800;
    border: none;
    font-size: 1.2em;
    
    /* Umbra adaptată la noua culoare (o strălucire aurie) */
    box-shadow: 0 5px 20px rgba(241, 196, 15, 0.4); 
    
    text-shadow: none;
    
    /* Spațierea cerută anterior */
    margin-bottom: 15px; 
}

/* Ajustare pentru mobil */
@media (max-width: 768px) {
    .conf-header {
        background-attachment: scroll; 
        padding: 100px 15px;
        background-position: center top; 
    }
    .conf-header h1 {
        font-size: 2.2em;
        letter-spacing: 1px;
        line-height: 1.3;
        margin-bottom: 30px;
    }
}



/* 3. Grid-uri si Carduri (Obiective) */
.conf-grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.conf-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.conf-card:hover { transform: translateY(-3px); }
.conf-card h3 { margin-top: 0; color: #003366; font-size: 1.3em; }

/* Culori specifice si Iconite prin CSS (Safe Mode) */
.conf-card-blue { border-left-color: #00cec9; background-color: #f0fdff; }
.conf-card-blue h3::before { content: "\1F3AF  "; } /* Tinta */

.conf-card-purple { border-left-color: #6c5ce7; background-color: #fdfeff; }
.conf-card-purple h3::before { content: "\1F393  "; } /* Palarie Absolvent */

/* 4. Timeline (Deadlines) */
.conf-section-title {
    text-align: center;
    color: #003366;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin: 40px 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.conf-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.conf-time-item {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.2s;
    position: relative;
}
.conf-time-item:hover { 
    transform: translateY(-5px); 
    border-color: #00cec9; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.conf-date {
    display: block;
    font-size: 1.3em;
    font-weight: 800;
    color: #d63031;
    margin-bottom: 5px;
}
.conf-detail {
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
}

/* 5. Publicatii */
.conf-pub-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.conf-pub-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #555;
    transition: 0.2s;
}
.conf-pub-item:hover { background-color: #fcfcfc; border-left-width: 6px; }

.conf-pub-item.wos { border-left-color: #8e44ad; }
.conf-pub-item.erih { border-left-color: #27ae60; }
.conf-pub-item.db { border-left-color: #7f8c8d; }

.conf-pub-item a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    color: #003366;
    margin-top: 5px;
}
.conf-pub-item a:hover { color: #00cec9; }

.conf-badge {
    background: #555;
    color: #fff;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
}
.conf-pub-item.wos .conf-badge { background: #8e44ad; }
.conf-pub-item.erih .conf-badge { background: #27ae60; }


/* Ascunde secțiunea Current Issue de pe prima pagină */
.pkp_structure_main .current_issue {
    display: none !important;
}

/* Alternativ, dacă tema folosește clase specifice conferințelor */
.cmp_current_issue {
    display: none !important;
}



/* Cod specific pentru program */

/* Containerul Principal - Tonuri Neutre */
.program-container {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    color: #2d3748; /* Antracit închis, citibil și elegant */
    line-height: 1.6;
}

/* Zilele conferinței */
.day-title {
    font-size: 26px;
    color: #1a202c;
    border-bottom: 2px solid #718096;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Cardul general pentru un interval orar / Activitate */
.event-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 5px solid #4a5568; /* Linie de accent neutră */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    padding: 22px;
    border-radius: 4px;
}

/* Header-ul evenimentului: Ora și Activitatea generală - FONT MĂRIT */
.event-header {
    font-size: 18px; /* Font mărit pentru evidențierea activităților */
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 8px;
}

.event-time {
    color: #2d3748;
    margin-right: 10px;
}

/* Evidențiere distinctă pentru Sesiunile Paralele și Locații */
.session-highlight-box {
    background-color: #f8fafc; /* Fundal distinct, gri foarte deschis și curat */
    border: 1px solid #cbd5e1;
    padding: 18px;
    border-radius: 6px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Titlul Sesiunii Paralele - FONT MĂRIT */
.session-title {
    font-size: 20px; /* Font mărit pentru evidențierea clară a sesiunii */
    color: #0f172a;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Locația de desfășurare - EVIDENȚIATĂ */
.event-location {
    display: inline-block;
    background-color: #e2e8f0; /* Fundal gri-neutru pentru locație */
    color: #334155;
    padding: 6px 14px;
    font-size: 15px; /* Font mărit pentru locație */
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Secțiunea Chairs / Moderatori */
.chairs-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.chairs-title {
    font-weight: bold;
    color: #64748b;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* Caseta pentru o lucrare științifică (Paper Box) */
.paper-box {
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
}

.paper-box:last-child {
    border-bottom: none;
}

/* Titlul lucrării - textul brut din document */
.paper-title {
    font-size: 15px;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* Lista de autori și afilieri */
.people-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.people-list li {
    font-size: 14px;
    color: #334155;
}

.person-name {
    font-weight: 600;
}

.person-affiliation {
    color: #64748b;
    font-style: italic;
    margin-left: 4px;
}

/* Liste derulante elegante (pentru secțiunile virtuale) */
details.virtual-dropdown {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    margin-top: 15px;
    padding: 10px 15px;
}

details.virtual-dropdown summary {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    outline: none;
    padding: 5px 0;
}

details.virtual-dropdown[open] summary {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

/* Responsivitate pentru mobil */
@media (max-width: 600px) {
    .program-container { padding: 10px; }
    .event-card { padding: 15px; }
    .session-title { font-size: 18px; }
    .event-header { font-size: 16px; }
}

.program-container h2 {
    font-size: 22px;
    color: #0f172a;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}