#unl_st_container { position: fixed; left: 0; top: 20%; z-index: 9999999; display: flex; align-items: flex-start; }
.unl_st_label { background: #172554; color: white; padding: 50px 10px; writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); border-radius: 0 15px 15px 0; cursor: pointer; font-weight: 900; box-shadow: 3px 0 10px rgba(0,0,0,0.3); }

/* PANEL GENİŞLİĞİ: 320'den 360'a çıktı */
.unl_st_panel { 
    background: white; 
    padding: 20px; 
    width: 360px; 
    border-radius: 0 15px 15px 0; 
    border: 2px solid #172554; 
    margin-left: -410px; /* Panel genişlediği için dışarıda kalma payını artırdık */
    transition: 0.4s ease; 
    box-shadow: 10px 0 30px rgba(0,0,0,0.2); 
    max-height: 85vh; 
    display: flex; 
    flex-direction: column; 
}

#unl_st_container:hover .unl_st_panel { margin-left: 0; }

/* İçerik Alanı - Panel İçinde Kaydırma */
#unl_st_content_area { margin-top: 15px; overflow-y: auto; flex-grow: 1; }
.unl_st_header { color: #172554; font-weight: 900; text-align: center; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.unl_st_search_box { display: flex; gap: 5px; }
#unl_st_input { flex: 1; padding: 10px; border: 1px solid #172554; border-radius: 5px; font-size: 14px; }
#unl_st_btn { background: #172554; color: white; border: none; padding: 8px 12px; border-radius: 5px; cursor: pointer; font-weight: bold; }

/* Galeri ve Resim Görünümü */
#unl_st_results_inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.unl_st_mini_card { border: 1px solid #eee; padding: 8px; text-align: center; cursor: pointer; border-radius: 8px; font-size: 12px; font-weight: 800; color: #172554; }
.unl_st_mini_card img { width: 100%; border-radius: 5px; margin-bottom: 5px; }
.unl_st_mini_card:hover { border-color: #172554; background: #f9f9f9; }

/* BÜYÜK RESİM AYARI - Panel İçin Optimize Edildi */
#unl_st_detail_inner { 
    text-align: center; 
    padding: 10px 5px;
}

#unl_st_big_img { 
    width: 100%; 
    max-width: 360px; /* Resim panelin neredeyse tamamını kaplasın */
    border-radius: 12px; 
    border: 3px solid #f0f0f0; 
    margin: 0 auto 15px auto; 
    display: block; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Resme hafif derinlik kattık */
}

#unl_st_img_title { 
    font-size: 18px; /* Başlığı daha okunaklı yaptık */
    color: #172554; 
    margin-bottom: 15px; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.unl_st_back_btn { 
    background: #172554; /* Butonu daha belirgin yaptık */
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 13px; 
    font-weight: bold; 
    transition: 0.3s;
}

.unl_st_back_btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.unl_st_note { 
    font-size: 11px; 
    text-align: center; 
    margin-top: 20px; 
    color: #64748b; 
    font-style: italic;
}