@charset "utf-8";
/* CSS Document */

/* Basic styles */
/*
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}
*/

.search-wrapper {
    display: flex;
    justify-content: space-between;
/*    gap: 20px;*/
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.search-block {
    width: 32%; /* Each block takes 30% of the width */
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    position: relative;
/*    padding-top:0px;*/
}

.search-block h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.search-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-block img{
    padding-top: 20px;
}

.input-wrapper {
    width: 65%;
}

input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.search-btn {
    padding: 10px 10px;
    background-color: #2E3A8C;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.search-btn:hover {
    background-color: #1b2974;
}

/* Block colors */
.yellow-border {
    border: 2px solid yellow;
}

.orange-border {
    border: 2px solid orange;
}

.green-border {
    border: 2px solid green;
}

/* Responsive layout for smaller screens */
@media (max-width: 1024px) {
    .search-block {
        width: 100%; /* Stack the blocks vertically */
        margin-bottom: 20px;
    }
    
    .search-wrapper {
        flex-direction: column;
        align-items: center; /* Center them vertically */
    }
}

#shortInfo {
    max-width: 1000px;
    margin-top: 15px;
    margin-bottom: 15px;
}
