/* #breadcrumb_on_solutions a {
    text-decoration: none !important;
    color: #000;
} */

#solutions_table {
    display: grid;
    grid-template-columns: repeat(4, 275px);
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

#solutions_table a {
    text-decoration: none;
    color: black;
}

#solutions_card {
    background-color: #EEEEEE;
    height: 413px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: all 0.3s ease;
}

#solutions_card img {
    max-width: 185px;
    max-height: 185px;
}

#solutions_card_name {
    margin: 55px 0 70px 0;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

#solutions_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Стили для детальной страницы */

#solutions_1c_detail_page {

}

#solutions_1c_detail_name {
    font-family: Montserrat;
    font-weight: 300;
    font-size: 42px;
    line-height: 52px;
    margin: 50px 0 50px 10%;
    max-width: 1000px;
}

#breadcrumb_on_solutions_1c_page {
    font-family: Montserrat;
    font-weight: 200;
    font-size: 16px;
    line-height: 26px;
    margin-left: 10%;
}

#breadcrumb_on_solutions_1c_page a {
    text-decoration: none;
    color: #000000;
}

#solutions_1c_detail_image_and_description {
    margin: 100px 10% 200px 15%;
    display: flex;
    gap: 100px;
    justify-content: center;
}

#solutions_1c_detail_image_and_button {
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
}

#solutions_1c_detail_image_and_description img {
    
}

#solutions_1c_detail_description {
    font-family: Montserrat;
    font-weight: 200;
    font-size: 16px;
    line-height: 26px;
    max-width: 590px;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
}

#read_more_btn {
    /* justify-content: space-between; */
    max-width: 500px;
    /* margin: 0 auto; */
    gap: 20px;
    font-family: Montserrat;
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	background-color: #424242;
	color: #EEEEEE;
	min-width: 207px;
	cursor: pointer;
	border: none;
}

#buttons_solutions_1c_detail_page {
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#read_more_btn a {
	color: #EEEEEE;
}


/* .search-container {
    position: relative;
    margin: 20px 0;
    text-align: center;
    display: inline-block;
} */

.search-container {
    position: relative;
    margin: 20px 0;
    text-align: center;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    width: 335px;
}

#solutionSearch {
    padding: 12px 40px 12px 20px; /* Увеличили правый padding для лупы */
    width: 275px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background-color: #EEEEEE;
    font-family: Montserrat;
    font-weight: 300;
    font-size: 18px;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Чтобы клики проходили сквозь иконку */
    color: #999;
    font-size: 18px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #EEEEEE;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-result-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000 !important;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-family: Montserrat;
    font-weight: 200;
    font-size: 18px;
}

.search-result-item:hover {
    background: #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}