@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #efefef;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: white;
}
.time-widget {
    font-size: 35px;
    font-weight: bold;
}
.search-bar {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
.search-bar input {
    font-family: 'Poppins', sans-serif;
    color: #efefef;
    font-weight: bold;
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 3px solid #30477a;
    border-radius: 50px;
    background-color: #000;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
}
.service-box {
    background-color: #000;
    padding: 15px;
    border: 3px solid #30477a;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.service-box img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
}
.modal.active {
    display: flex;
}
.modal-content {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    border: #efefef solid 3px;
}
#searchForm {
    display: flex;
    justify-content: space-between; /* Ensure the button is pushed to the right */
    width: 100%;
    max-width: 500px; /* Optional: To limit the width of the search box */
}

#searchInput {
    flex-grow: 1; /* Makes the input field take up the remaining space */
    padding: 8px;
    font-size: 16px;
    padding-left: 20px;
}

.searchButton {
    margin-left: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 16px;
    text-decoration: none;
    background-color: #000; 
    color: #efefef;
    border: 3px solid #35b37b;
    cursor: pointer;
    border-radius: 50px;
}

.searchButton:hover {
    background-color: #77be9e;
    color: #000;
}
