body {
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}
header {
    height: 50px;
    background: #ffffff;
        display: flex;
    align-items: center;
    justify-content: center;
}
.language-switcher {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
}

.language-switcher a {
    background-color: #406f9d;
    color: white;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Для псевдоэлементов */
    display: flex;
    align-items: center;
}

/* Флаг для KZ */
.language-switcher .lang-kz::after {
    content: "";
    background-image: url('../image/kz.jpg'); /* Путь к изображению флага Казахстана */
    background-size: cover;
    width: 20px;
    height: 15px;
    margin-left: 8px;
}

/* Флаг для RU */
.language-switcher .lang-ru::after {
    content: "";
    background-image: url('../image/ru.png'); /* Путь к изображению флага России */
    background-size: cover;
    width: 20px;
    height: 15px;
    margin-left: 8px;
}

/* Флаг для EN */
.language-switcher .lang-en::after {
    content: "";
    background-image: url('../image/en.png'); /* Путь к изображению флага Великобритании */
    background-size: cover;
    width: 20px;
    height: 15px;
    margin-left: 8px;
}

.language-switcher a:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.language-switcher a:active {
    background-color: #003f7f;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}


    



#dynamicTabsContainer {
    width: 60%;
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f7f7f7;
}

/* Стили для кнопок вкладок */
.toggle-btn {
    background-color: #5b6b81; /* Зеленый цвет кнопки */
    color: white; /* Белый текст */
    border: none;
    padding: 12px 20px; /* Увеличенный отступ */
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-size: 16px;
    margin-bottom: 5px; /* Расстояние между кнопками */
    border-radius: 8px; /* Закругленные края */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Плавные переходы */
}

.toggle-btn:hover {
    background-color: #57739b; /* Более темный зеленый при наведении */
    transform: translateY(-2px); /* Легкий подъем при наведении */
}

/* Стили для содержимого вкладок */
.collapsible-content {
    display: none; /* По умолчанию скрываем содержимое */
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px; /* Закругленные края */
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Легкая тень */
    transition: max-height 0.4s ease, opacity 0.4s ease; /* Плавные переходы */
    overflow: hidden;
    opacity: 0; /* Прозрачность для плавного появления */
    max-height: 0; /* Максимальная высота для плавного раскрытия */
}

/* Активное состояние содержимого */
.collapsible-content.active {
    display: block; /* Показываем содержимое */
    opacity: 1; /* Устанавливаем видимость */
    max-height: 1000px; /* Ограничиваем максимальную высоту для плавного раскрытия */
}

/* Стили для таблиц информации */
.InformationTable {
    width: 70%; /* Ширина таблицы на всю вкладку */
    border-collapse: collapse; /* Убираем промежутки между ячейками */
}

.InformationTable td {
    padding: 10px; /* Внутренние отступы ячеек */
    border: 1px solid #ddd; /* Граница ячеек */
    font-size: 14px; /* Размер шрифта */
    color: #333; /* Цвет текста */
}

.InformationTable tr:nth-child(even) {
    background-color: #f9f9f9; /* Фон для четных строк */
}




.Information {
    width: 60%;
}



#InformationTable tr {
    padding: 0;
    margin: 0;
}





















.customNav-header-mobile {
    
    display: none;
}

.buttons {
  overflow: hidden;
  background-color: #7785a7;
    display: flex;
    flex-direction: column;
}

.tablink {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: white;
}

.tablink.active, .tablink:hover {
  background-color: #fff;
  color: black;
}

.tablink:hover {
  background-color: #ddd; 
  color: black; 
}


.panel {
  padding: 50px;
  display: none;
  background-color: white;
}

.panel h2 {
  font-size: 24px;
}

.panel p {
  font-size: 16px;
}

        
            
           .word-data-grid {
    grid-template-columns: auto auto; /* This creates two columns */
    gap: 10px; /* Adjust the gap between the items */
    align-items: center; /* Align items vertically in the center */
}

.word-data-item {
    background: #dfe3ed; /* Background color for the items */
    padding: 10px; /* Padding inside the items */
    border-radius: 5px;
}

/* Additional styling to make it look better */
.word-data-item strong {
    font-weight: bold;
}
 
            .linkSoz{
                text-decoration: none;
    color: #1c2a4c;
    background-color: #cbd1e6;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 1px 0 5px rgb(0 0 0 / 50%);
            }   

            .linksSoz {
    
        display: flex;
    justify-content: space-around;s
                
            }


            .alphabit{
                display: flex;
    justify-content: space-around;
            }
        
        .clickableWord1 {
      cursor: pointer;      
    color: red;
}
          
          
          
          .hidden {
    display: none;
}

          
          .selectGroup {
            margin-bottom: 10px;
        }
          
          #loadingPanel {
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 100; /* Makes sure the loading panel is on top of other content */
}
          
          #loadingPanelB {
    display: none; /* Hidden by default, shown dynamically via JavaScript */
    position: fixed; /* Fixed positioning to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent black background */
    z-index: 1000; /* High z-index to keep it on top of other content */
    display: flex; /* Enables Flexbox */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
}



.uleki{

    display: flex;
    justify-content: center;
    list-style-type: none;
    
    
}


/* Basic styling and reset for our unique navigation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.customNav-header {
    
    display: none;
}

.customNav-header, .customNav-header-base {
    background-color: #34495e; /* Dark slate gray */
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 4;
}

.customNav-nav-menu, .customNav-nav-menu-base {
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.customNav-dropdown-menu a, .customNav-dropdown-menu-base a {
    text-align: left;
}

.customNav-nav-menu li, .customNav-nav-menu-base li {
    display: inline-block;
    margin: 0 20px;
}

.customNav-nav-link, .customNav-dropdown-toggle, .customNav-nav-link-base, .customNav-dropdown-toggle-base {
    text-decoration: none;
    color: #ecf0f1; /* Light gray */
    padding: 10px 15px;
    font-weight: bold;
    display: block;
    transition: color 0.3s;
}

/* Hover effect for links */
.customNav-nav-link:hover, .customNav-dropdown-toggle:hover, .customNav-nav-link-base:hover, .customNav-dropdown-toggle-base:hover {
    color: #1abc9c; /* Soft teal */
    transition: color 0.3s;
}

/* Dropdown Menu Styling */
.customNav-dropdown-menu, .customNav-dropdown-menu-base {
    display: none;
    position: absolute;
    background-color: #2c3e50; /* Darker shade of blue */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 300px;
}

.customNav-dropdown-menu a, .customNav-dropdown-menu-base a {
    color: #ecf0f1;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.customNav-dropdown-menu a:hover, .customNav-dropdown-menu-base a:hover {
    background-color: #1abc9c;
}


#myRow {
    
    display: none;
}

.avtor-name {
    
    cursor: pointer;
    padding: 5px;
    border: 1px solid #c3c3c3;
    border-radius: 10px;
    background: #d7d7d7;
    color: #000000;

    
}


.li2 {
    
    text-decoration: none;
    margin-right: 20px;
}

.li2 a {
    
    color: #2e5080;
    font-weight: bold;
    
}
.begunok {
    display: flex;
    align-items: center;
    height: 50px;
    background: #57739b;
    margin-bottom: 20px;
    overflow: hidden; /* скрываем части текста, которые не помещаются в блок */
    position: sticky;
    top: -5.5%;
    z-index: 2;
}

.text {
    color: white;
    position: absolute;
    white-space: nowrap; /* чтобы текст был в одну строку */
    animation: scroll-text 50s linear infinite; /* анимация, которая будет повторяться бесконечно */
}

/* Определяем ключевые кадры анимации */
@keyframes scroll-text {
    from {
        left: 100%; /* начальное положение справа за пределами видимой области */
    }
    to {
        left: -100%; /* конечное положение слева за пределами видимой области */
    }
}


.search-containerParent{
    display: flex;
    justify-content: center;
    align-items: center;
    /* justify-content: flex-start; */
    /* padding-top: 7%; */
    /* margin-top: -2%; */
    s
    position: -webkit-sticky;
    /* position: fixed; */
    /* top: 6%; */
    background-color: white;
    /* padding-bottom: 2%; */
    /* width: 80%; */
    z-index: 1;
    /* margin-left: 12%; */
    z-index: 1;
}

.search-container {
    border: 0.5px solid #e3dedd;
    background: #fff;
    border-radius: 20px;
    box-shadow: inset 1px 1px 2px #babecc,
                inset -2px -2px 5px #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 60%;
    justify-content: flex-end;
    margin-bottom: 1%;
}

.search-input {
    border: none;
    outline: none;
    background: none;
    width: 100%; /* Adjusted to leave space for button */
    padding: 10px 20px;
    font-size: 18px;
    color: #333;
    border-radius: 20px 0 0 20px; /* Only left corners rounded */
}

.search-input::placeholder {
    color: #aaa;

}

.search-button {
    padding: 12px 20px;
    background-color: #2e5080; /* Bootstrap primary color */
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 20px 20px 20px 20px; /* Only right corners rounded */
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}

/* Adjust focus-within effect for the container */
.search-container:focus-within {
    box-shadow: inset 1px 1px 2px #babecc,
                inset -2px -2px 5px #fff;
}

.byline {
    text-align: center;
    font-size: 18px;
}

.byline a {
    text-decoration: none;
    color: #ce0000;
}

.container {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 80%;
    
}
.containerFilter{
  position: -webkit-sticky;
  /* position: fixed; */
  /* top: 15%; */
  /* left: 1%; */
  display: flex;
  flex-direction: column;
  border: 0.1rem solid;
  border-color: #e5e5e5;
  /* width: 20%; */
  border-radius: 30px;
  box-shadow: inset 1px 1px 1px #babecc, inset 1px 1px 2px #babecc;
    min-height: 70rem;
    max-height: 70rem;
    min-width: 20rem;
    max-width: 20rem;
  z-index: 2;
  /* height: 60%; */
}
.filter{
        display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    margin-top: 15%;

}

.selectGroup{
    width: 100%;
    display: flex;
    justify-content: center;
}
    
select{
    width: 90%;
}
.btnSozder {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 9%;
}
.containerShow{
     /* display: flex; */
     width: 100%;
     /* display: none; */

     flex-direction: column;
}




tr {
display: flex;
    flex-direction: column;
margin: 1%;
    padding: 1%;
    background-color: #f5f5f5;
    width: 100%;
    border-radius: 10px;
    padding: 10px;

}

 #authorsTable {
        border-collapse: collapse;
        width: 99%;
    }
    #authorsTable th, #authorsTable td {


        text-align: left;
    }
    #authorsTable tr:nth-child(even) {
    background: white;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #dedee3;
        
    }

.searchbox {
    width: 100%


}

.innerForm{
    display: flex;
    justify-content: center;
}

button[type="submit"] {
    width: 35px;
    height: 30px;
    background-image: url(../image/searchIcon.png);
    background-repeat: no-repeat;
    background-position: 17px 0px;
    transform: scale(1.2);
    background-color: transparent;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
    border: none;
    cursor: pointer;
}

input[type="search"]:focus {
    outline: 0;
}




/* CSS */

.SozButton {
    width: 90%;
    align-items: center;
    appearance: button;
    background-color: #5b6b81;
    border-radius: 8px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    padding: 10px 21px;
    text-align: center;
    box-shadow: 0 -1px rgb(0 7 46 / 50%);
  
   
}


.panelPort {
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 79%);
    /* Black w/ opacity */
    display: none;
    /* Hidden by default. */
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.panel-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    border-radius: 20px;
    /* Slightly rounded corners */
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.clickableWord {
    cursor: pointer;
    color: #818181;
}

.clickableWord:hover {
    color: #ff4700;
}

.kyzyl {
    color: #e76b00;
    font-weight: bold;
}

.gender-name,
.style-name,
.audage-name,
.typemedia-name,
.merzim-name,
.takrip-name,
.derekkoz-name {
    display: none;
}



.site-header {
    background-color: #005f73;
    /* Dark teal background for contrast */
    color: #edf6f9;
    /* Off-white text for better readability */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Soft shadow for depth */
    padding: 20px 5%;
    overflow: hidden;
}

.site-header h1 {
    font-family: ui-sans-serif;
    font-size: 2.1em;
    font-weight: 300;
    margin: 0;
    transition: transform 0.3s ease;
}

.site-header h1:hover {
    transform: scale(1.05);
    /* Slight increase in size on hover for interactivity */
}

.searchIzdeu {
    display: flex;
}

.Izdeu {
    font-size: 25px;
}

#searchInput {
    font-size: 25px;
}

.branding {
    display: flex;
    align-items: center;
}

.logo {
    height: 15%;
    display: flex;
    justify-content: center;
}

.header-content {
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-sentence {
    font-style: italic;
    margin-right: 10px;
    max-width: 300px;
    font-size: x-large;
}

.header-right {
    display: flex;
    align-items: center;
    text-align: right;
    /* Aligning the text to the right */
}

.header-img {
    height: 80px;
    /* Adjusting the image size to match the logo */
}

.ld-search__form {
    background: #c4ccdf;
    padding: 25px;
}

.select {
    margin: 0.5%;
}

.SozBtn {
    display: flex;
    align-items: center;
}

.SozForma1 {
    margin-left: 10px;
    font-size: 25px;
}

.SozForma2 {
    margin-left: 10px;
    font-size: 25px;
}

.bir {
    display: grid;
    grid-template-columns: 20% auto 20%;
    padding: 10px;
}

.merzim {
    margin-right: 2px;
    font-size: 25px;
}

.jil {
    margin-left: 2px;
    font-size: 25px;
}

button {
    font-size: 16px;
}

::selection {
    color: #fff;
    background: #17A2B8;
}

.wrapper {
    width: 400px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

header h2 {
    font-size: 24px;
    font-weight: 600;
}

header p {
    margin-top: 5px;
    font-size: 16px;
}

.price-input {
    width: 100%;
    display: flex;
    margin: 30px 0 35px;
}

.price-input .field {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
}

.field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 19px;
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #17A2B8;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #17A2B8;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17A2B8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.eki {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

#city-select {
    font-size: 25px;
}

.ush {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.stildyTandau {
    font-size: 25px;
}

#input {
    font-size: 25px;
}

.result,
.resultA {
    width: 90%;
    /* Adjust width as needed */
    max-width: 90%;
    font-size: 23px;
    height: 100%;
    margin-left: 5%;
}

.result .even-row,
.resultA .even-row,
.result .odd-row,
.resultA .odd-row {
    background-color: #f2f2f2;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result .odd-row,
.resultA .odd-row {
    background-color: #ffffff;
}

.odd-row {
    border-style: solid;
    border-width: thin;
    border-color: #a9b3c9;
}

.autCl,
.textNameCl,
.desCl,
.matCl,
.derCl,
.takCl {
    margin: 5px 0;
}


/* Additional styling */

.autCl,
.matCl,
.derCl,
.takCl {
    font-weight: bold;
    color: #585757;
}

.textNameCl {
    color: #666;
    display: inline;
    font-style: italic;
    font-size: 90%;
}

hr.solid {
    border-top: 1px solid #ededed;
}

.desCl {
    font-style: italic;
    color: #999;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Space between panels */
    margin: 0 8px;
    /* Margin on the sides of each column */
}

.panel {
    padding: 30px;
    /* Increased padding for more space inside panels */
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    width: 460px;
    /* Increased width */
    min-height: 320px;
    /* Increased minimum height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* To distribute space inside the panel */
}

.blue-panel {
    background-color: #90b6e0;
    color: black;
    font-size: 20px;
}

.white-panel {
    background-color: #ffffff;
    color: black;
    border: 1px solid #dddddd;
    font-size: 20px;
}

.panel p {
    margin: 0;
    padding: 10px 0;
    /* Increased padding for paragraph elements */
    flex: 1;
    /* Allows paragraphs to expand and fill the space */
}

.tort {
    display: flex;
    align-items: center;
    justify-content: space-around;
}


.menu-logo, .filter-logo, .containerFilter .close-btn {
    
    display: none;
}


.new-containerFilter {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    z-index: 1000;
}

.new-containerFilter.open {
    left: 0;
}

.new-close-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;

    
}
#paginationControls {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    padding: 10px;
    bottom: 0;
    background: #5b6b81;
    border-radius: 10px;
}

#paginationControls button, #paginationControls span {
    margin: 0 5px;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

#paginationControls button:hover {
    background-color: #ddd;
}

#paginationControls button.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

#paginationControls span {
    cursor: default;
    padding: 10px 15px;
    border: none;
}
.mainInfor{
    /* display: flex; */
    /* margin-left: 15%; */
    /* margin-top: 10%; */
}
.mainInfor1{
    /* width: 70%; */
}
.mainInfor2{
    display: flex;
    justify-content: center;
    /* width: 68%; */
    /* position: fixed; */
    right: 5px;
    top: 13%;
    /* z-index: 5; */
}

.mainInfor2 tr {
    background: white;
}



@media only screen and (max-width: 1024px) {
    
    * {
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
    
     body {
         width: 100%;
         overflow-x: hidden; /* Hide horizontal scrollbar */
         max-width: 100%; /* Prevent any part of the site from exceeding the width of the viewport */
}
    
    

    
    .Information {
        
        width: 100%;
    }
    
    #sozformaButton {
        
        margin-top: -2%;
        
    }

    
    
    .matinClass {
        
    background-color: #f9fbff;
    padding: 3%;
    border-radius: 5px;
    box-shadow: 0 1px rgb(0 0 0 / 20%);
        
    }
    
    
    #Avtor, #MatinAty, #Gender, #Style, #Audage, #Typemedia, #Merzim, #Takrip, #Derekkoz {
        
    border-radius: 2px;
    font-size: 16px;
    color: black;
    box-shadow: 2px 0 5px rgb(0 0 0 / 50%);
        
    }
    
    
    /* Social Icons Styling */
.social-icons {

    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
    background-color: #dee0e3;
    justify-content: center;
    box-shadow: 2px 0 10px rgb(0 0 0 / 50%);
}

.social-icons a {
    margin: 0 3.7%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.7);
    width: 35px;
    height: 35px;
    
}

    .social-icons img {
        width: 20px;
        height: 20px;
    }

    
    .btnSozder {
        
    display: flex;
        justify-content: center;
        align-items: center;
        
    }
    
    .panelPort {
        
        padding: 10px;
    }
    
    .panel-content {
        
        width: 100%;
    }
    
    #KalpinaBtn {
        
        background-color: #5b6b81;
    }
    
    
    .filter {
        
        transform: scale(0.8);  
        margin-top: -12%;
    }
    
    .filter-logo {
    cursor: pointer;
}

.containerFilter {
    position: fixed;
    display: flex;
    justify-content: center;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    z-index: 1000;
}

.containerFilter.open {
    left: 0;
    margin-left: -10%;
    overflow: hidden;
}

.close-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
    
    .containerFilter {
        border-radius: 0px;
        width: 100%;
    }
    
    .new-containerFilter {
        width: 100%;
    }
    
    .customNav-header-base, .logo    {
        
        display: none;
    }
    
    .menu-logo, .logo, .filter-logo, .containerFilter .close-btn{
    
    display: block;
}
    
    .search-container {
        
        width: 100%;
        margin-left: 3%;
    }

    
    
    .begunok, .customNav-header, .containerFilter .logo{
        display: none;
    }
    
    .customNav-header-mobile {
        display: flex;
        justify-content: space-between; /* Aligns items on the left and right */
        align-items: center; /* Centers items vertically */
        background-color: #0d2939;
        padding: 60px 10px; /* Adjusted padding for better spacing */
    }
    
    .filter-logo {
        
        height: 45px; /* Sets a standard height for logos */
        width: auto; /* Maintains the aspect ratio */
        border-radius: 18px;
        border-style: solid;
        border-color: #a9abbe;
    }

    .customNav-header-mobile .logo, .customNav-header-mobile .menu-logo {
        height: 100px; /* Sets a standard height for logos */
        width: auto; /* Maintains the aspect ratio */
    }

    .customNav-header-mobile .menu-logo {
        cursor: pointer; /* Indicates that the logo is clickable */
    }
    
    .search-button {
        
        display: none;
    }
    
    .search-input {
        
        width: 200%;
    }
    
    .search-containerParent {
        
        width: 100%;
        position: sticky;
        margin-top: 0%;
        margin-left: 0%;
        padding-bottom: 2%;
        top: 0%;
        
        
        
    }
    

    
    #authorsTable tr:nth-child(even) {
        background-color: #d4d7dd;
        width: 100%;
        border-radius: 5px;
        padding: 10px;
        
        
    }
    
    tr {
        
        border-radius: 5px;
        padding: 10px;
        box-shadow: 0 -1px rgb(0 0 0 / 20%);
    }
    
    .container {
        
        width: 90%;
    }
    
    
 

.customNav-nav-menu {
    list-style-type: none; /* Removes bullet points from the list */
    padding: 0;            /* Removes padding */
    text-align: inherit;
}

.customNav-nav-menu li {
    padding: 4px;        /* Padding for each menu item */
    border-bottom: 1px solid #ccc; /* Separator between items */
    margin: 0 45px;
}

.customNav-nav-menu li:last-child {
    border-bottom: none;  /* Removes border from the last item */
}

.customNav-nav-menu a {
    text-decoration: none; /* Removes underline from links */
    color: #333;           /* Text color for links */
    display: block;        /* Makes the link occupy the entire list item */
}

.customNav-nav-menu a:hover {
    background-color: #f4f4f4; /* Background color on hover */
}

    
    .customNav-dropdown-menu {
    display: none;  /* Initially hidden */
    position: absolute;  /* Positioned relative to their parent */
    background-color: #ffffff;  /* Background color */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);  /* Adds a subtle shadow */
    width: 70%;  /* Full width of the parent element */
    z-index: 1001;  /* Ensures dropdown is above other content */
}

.customNav-dropdown:hover .customNav-dropdown-menu {
    display: block;
}
    
    #close-menu {

    border: none;
    cursor: pointer;
    transform: scale(0.5);

}
    
    #close-btn {
    padding: 5px 10px;
    font-size: 16px;
    background-color: white;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
    
    .customNav-header{
        
        background-color: white;
        padding: 0px 20px;
    }

    header {
        
        height: 0px;
    }
    
    
    
    
    #paginationControls button {
        display: none;
    }
    #paginationControls button.active,
    #paginationControls button:first-child,
    #paginationControls button:nth-child(2),
    #paginationControls button:nth-last-child(2),
    #paginationControls button:last-child {
        display: inline-block;
    }
    
        .mainInfor{
display: flex;
            flex-direction: column;
            margin-left: 0%;
    margin-top: 0%;
            justify-content: center;
            align-items: center;
}
    .mainInfor1{
    width: 100%;

}
    .mainInfor2{
    width: 100%;


}
    
    #dynamicTabsContainer {
    width: 100%;

}
        .containerFilter{
        min-height: 50rem;
        max-height: 60rem;
        top: 0%;
            display: flex;
            justify-content: flex-start;
    }
    
    

    
}





@media (min-width: 1025px) and (max-width: 1300px) {
    .container{
        width: 96%;
        
    }
    .containerFilter{
        min-height: 70rem;
        max-height: 70rem;
        top: 20%;
    }
}
@media (min-width: 1350px) and (max-width: 3000px) {
    .container{
        width: 96%;
        
    }
    .containerFilter{
        min-height: 70rem;
        max-height: 70rem;
        top: 20%;
    }
}



