/**
 * CSS per lo shortcode progetti in gara
 *
 * @package    Smart_Retail_Award
 * @subpackage Smart_Retail_Award/public/css
 * @since      1.0.0
 */

/* Contenitore Principale
--------------------------------------------- */
.sra-progetti-gara-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Filtri Progetti
--------------------------------------------- */
.sra-filtri-container {
    margin-bottom: 30px;
}

/* Box di ricerca */
.sra-search-box {
    position: relative;
    margin-bottom: 20px;
    max-width: 500px;
}

.sra-search-box input[type="text"] {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
}

.sra-search-box input[type="text"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.sra-search-clear {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, visibility 0.2s;
}

.sra-search-box.has-text .sra-search-clear {
    visibility: visible;
    opacity: 1;
}

.sra-search-clear:hover {
    color: #d63638;
}

.sra-search-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
}

.sra-search-button:hover {
    background-color: #005d8c;
}

/* Filtri per categoria */
.sra-categorie-filter {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.sra-categorie-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.sra-categoria-item {
    margin: 0;
}

.sra-categoria-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.sra-categoria-item.active .sra-categoria-link {
    background-color: #0073aa;
    color: #fff;
}

.sra-categoria-link:hover {
    background-color: #e0e0e0;
    color: #000;
}

.sra-categoria-item.active .sra-categoria-link:hover {
    background-color: #005d8c;
}

/* Filtri per Special Green */
.sra-special-green-filter {
    margin-bottom: 20px;
}

.sra-special-green-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sra-special-green-item {
    margin: 0;
}

.sra-special-green-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #e8f5e8;
    color: #2d5a2d;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    border: 1px solid #c4e0c4;
}

.sra-special-green-item.active .sra-special-green-link {
    background-color: #228b22;
    color: #fff;
    border-color: #228b22;
}

.sra-special-green-link:hover {
    background-color: #d4edda;
    color: #155724;
    border-color: #b8d4ba;
}

.sra-special-green-item.active .sra-special-green-link:hover {
    background-color: #1e7e1e;
    border-color: #1e7e1e;
}

/* Griglia Progetti
--------------------------------------------- */
.sra-progetti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.sra-progetti-grid.columns-1 {
    grid-template-columns: 1fr;
}

.sra-progetti-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.sra-progetti-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sra-progetti-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Card Progetto
--------------------------------------------- */
.sra-progetto-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.sra-progetto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Immagine Progetto */
.sra-progetto-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f5f5;
}

.sra-progetto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.sra-progetto-card:hover .sra-progetto-image img {
    transform: scale(1.05);
}

.sra-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-style: italic;
}

/* Icone categorie */
.sra-categorie-icons {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.sra-categoria-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    font-weight: bold;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sra-categoria-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icone Special Green - ora all'interno del div categorie */
.sra-special-green-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(34, 139, 34, 0.9); /* Verde per distinguerle */
    border-radius: 5px;
    font-weight: bold;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.sra-special-green-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Informazioni Progetto */
.sra-progetto-info {
    padding: 15px;
}

.sra-progetto-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.sra-progetto-company {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

.sra-company-divider {
    margin: 0 5px;
    color: #aaa;
}

.sra-progetto-contact {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.sra-contact-label {
    font-weight: 600;
    color: #333;
}

.sra-contact-name {
    color: #555;
    font-weight: 500;
}

.sra-contact-separator {
    color: #999;
    margin: 0 2px;
}

.sra-contact-action {
    color: #666;
    font-size: 0.85rem;
}

.sra-contact-email {
    text-decoration: none;
}

.sra-contact-email:hover {

}

.sra-email-icon {
    font-size: 12px;
    line-height: 1;
}

/* Stili legacy per compatibilità */
.sra-contact-link {
    color: #0073aa;
    text-decoration: none;
}

.sra-contact-link:hover {
    text-decoration: underline;
}

.sra-progetto-categories {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* Messaggio Nessun Progetto */
.sra-no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 4px;
    color: #666;
    font-style: italic;
}

/* Popup Container
--------------------------------------------- */
.sra-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
}

.sra-popup-container.active {
    visibility: visible;
    opacity: 1;
}

/* Blocca scroll del body quando popup è aperto
--------------------------------------------- */
body.sra-popup-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

/* Popup Dettagli Progetto
--------------------------------------------- */
.sra-popup-dettagli {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background-color: #fff;
    border-radius: 8px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    animation: sraPopupOpen 0.3s ease-out;
}

@keyframes sraPopupOpen {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.sra-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s;
}

.sra-popup-close:hover {
    background-color: #f0f0f0;
    color: #d63638;
}

/* Contenuto Popup - Modificato per layout verticale */
.sra-popup-content {
    display: flex;
    flex-direction: column;
    overflow: visible;
    flex: 1;
}

/* Gallery Slider - Modificato */
.sra-gallery-container {
    width: 100%;
    position: relative;
    background-color: #000;
}

.sra-gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9; /* Proporzione widescreen per la galleria */
}

.sra-gallery-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.sra-gallery-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sra-gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.sra-gallery-prev,
.sra-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background-color 0.2s;
}

.sra-gallery-prev {
    left: 15px;
}

.sra-gallery-next {
    right: 15px;
}

.sra-gallery-prev:hover,
.sra-gallery-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Indicatori Gallery */
.sra-gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}

.sra-gallery-indicator {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sra-gallery-indicator.active {
    background-color: #fff;
}

.sra-no-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #999;
    font-style: italic;
    background-color: #f5f5f5;
}

/* Icone categorie in overlay nel popup */
.sra-categorie-icons-popup {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 6;
    max-width: 250px; /* Limita la larghezza per evitare troppe icone in una riga */
}

.sra-categorie-icons-popup .sra-categoria-icon {
    width: 60px; /* Dimensione più piccola nel popup */
    height: 60px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.sra-categorie-icons-popup .sra-categoria-icon:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 1);
    z-index: 7;
}

/* Icone Special Green nel popup - ora nel div categorie-popup */
.sra-categorie-icons-popup .sra-special-green-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(34, 139, 34, 0.85);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    color: white;
}

.sra-categorie-icons-popup .sra-special-green-icon:hover {
    transform: scale(1.1);
    background-color: rgba(34, 139, 34, 1);
    z-index: 7;
}

/* Dettagli Progetto nel Popup */
.sra-project-details {
    padding: 25px;
    flex-grow: 1;
    overflow: visible;
}

.sra-project-title {
    margin: 0 0 15px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.sra-project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    gap: 20px;
}

.sra-project-meta-content {
    flex: 1;
}

.sra-project-external-link {
    flex-shrink: 0;
}

.sra-external-link-button {
    background-color: #9C1814 !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    padding: 5px 16px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.sra-external-link-button:hover {

}

.sra-external-icon {
    font-size: 1.1em;
}

/* Responsive per dispositivi mobili */
@media (max-width: 768px) {
    .sra-project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sra-project-external-link {
        align-self: stretch;
    }
    
    .sra-external-link-button {
        width: 100%;
        justify-content: center;
    }
}

.sra-project-company {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

.sra-project-contact {
    margin-bottom: 10px;
    font-size: 1rem;
}

.sra-project-categories {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.sra-project-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.sra-project-content p {
    margin-bottom: 15px;
}

/* Footer Popup con Navigazione */
.sra-popup-footer {
    padding: 15px 25px;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.sra-project-navigation {
    display: flex;
    justify-content: space-between;
}

.sra-project-prev,
.sra-project-next {
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.sra-project-prev:hover,
.sra-project-next:hover {
    background-color: #005d8c;
}

.sra-project-nav-placeholder {
    width: 120px;
}

/* Popup Immagine Ingrandita */
.sra-popup-image-big {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    animation: sraPopupOpen 0.3s ease-out;
}

.sra-popup-image-container {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sra-fullsize-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

/* Navigazione per il popup immagine ingrandita */
.sra-popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    transition: background-color 0.3s;
}

.sra-popup-nav:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.sra-popup-prev {
    left: 20px;
}

.sra-popup-next {
    right: 20px;
}

/* Stili per elemento nascosto */
.sra-hidden {
    display: none !important;
}

/* Media Queries
--------------------------------------------- */
@media (max-width: 992px) {
    .sra-progetti-grid.columns-3,
    .sra-progetti-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sra-popup-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .sra-categorie-icons-popup .sra-categoria-icon {
        width: 50px;
        height: 50px;
    }
    
    .sra-categorie-icons-popup .sra-special-green-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .sra-gallery-slider {
        aspect-ratio: 4 / 3;
    }
    
    .sra-project-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .sra-project-prev,
    .sra-project-next {
        width: 100%;
        text-align: center;
    }
    
    .sra-popup-nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .sra-popup-prev {
        left: 10px;
    }
    
    .sra-popup-next {
        right: 10px;
    }
    
    .sra-categorie-icons-popup {
        top: 15px;
        left: 15px;
        max-width: 180px;
    }
    
    .sra-categorie-icons-popup .sra-categoria-icon {
        width: 40px;
        height: 40px;
    }
    
    .sra-categorie-icons-popup .sra-special-green-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Stili per la legenda aggiunti dalla seconda media query */
    .sra-categorie-filter {
        flex-direction: column;
        gap: 15px;
    }
    
    .sra-legenda-link-container {
        align-self: flex-end;
    }
    
    .sra-legenda-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
        gap: 16px !important;
    }
    
    .sra-legenda-item {
        padding: 12px;
    }
    
    .sra-legenda-item-image img,
    .sra-legenda-placeholder {
        /*width: 50px;
        height: 50px;*/
    }
    
    .sra-legenda-popup-content {
        margin: 10px;
        max-height: calc(100vh - 40px);
    }
}

@media (max-width: 576px) {
    .sra-progetti-grid {
        grid-template-columns: 1fr !important;
    }
    
    .sra-categorie-list,
    .sra-special-green-list {
        flex-direction: column;
    }
    
    .sra-categorie-icons-popup {
        max-width: 150px;
    }
    
    .sra-progetto-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .sra-contact-separator {
        display: none;
    }
    
    .sra-contact-action {
        margin-top: 2px;
    }
}

/* === LEGENDA POPUP === */
.sra-legenda-link-container {
    flex-shrink: 0;
}

.sra-legenda-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 13px !important;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    line-height: 25.5px !important;
}

.sra-legenda-link:hover {
    background: #e9ecef;
    border-color: #9C1814 !important;
    color: #9C1814 !important;
    text-decoration: none;
}

.sra-legenda-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #9C1814 !important;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.sra-legenda-popup,
#sra-legenda-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none !important;
}

.sra-legenda-popup[style*="display: block"],
#sra-legenda-popup[style*="display: block"] {
    display: block !important;
}

.sra-legenda-popup-overlay,
#sra-legenda-popup .sra-legenda-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10001;
}

.sra-legenda-popup-content,
#sra-legenda-popup .sra-legenda-popup-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sra-legenda-header,
#sra-legenda-popup .sra-legenda-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.sra-legenda-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.sra-legenda-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sra-legenda-close:hover {
    background: #e9ecef;
    color: #333;
}

.sra-legenda-body,
#sra-legenda-popup .sra-legenda-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.sra-legenda-section {
    margin-bottom: 30px;
}

.sra-legenda-section:last-child {
    margin-bottom: 0;
}

.sra-legenda-section h4 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #9C1814 !important;
    padding-bottom: 8px;
}

.sra-legenda-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sra-legenda-item {
    text-align: center;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.sra-legenda-item:hover {
    border-color: #9C1814 !important;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.1);
    transform: translateY(-2px);
}

.sra-legenda-item-image {
    margin-bottom: 12px;
}

.sra-legenda-item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #eee;
}

.sra-legenda-placeholder {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #666;
    font-size: 24px;
}

.sra-icon-category::before {
    content: "📂";
}

.sra-icon-special-green::before {
    content: "🌱";
}

.sra-legenda-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}
