/* base.css */

body {
    background: #333;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.main {
   display: none; 
}

/* Top bar styles */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 10px 20px;
    color: white;
    box-shadow: 0 1px 0 white;
    position: relative;
    z-index: 999;
}

.logo {
    height: 40px;
}

/* Search bar styles */
.search-bar-container {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 400px;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.search-bar {
    width: calc(100% - 40px);
    padding: 10px 35px 10px 10px;
    border: none;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.search-bar:focus {
    outline: none;
    width: calc(100% - 50px);
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #333;
}
