
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .top-bar {
            background-color: #fff;
            padding: 1rem;
            display: flex;
            justify-content: flex-end;
            align-items: center;
/*            width: 100%; */
        }
        .profile-icon {
            font-size: 1.5rem;
            color: #583426;
            margin-right: 1rem;
        }
        .add-company-btn {
            background-color: #583426;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .add-company-btn:hover {
            box-shadow: 0 0 10px rgba(227,213,208,0.5);
        }
        .user-greeting {
            margin-right: 1rem;
        }
        .search-container {
            background-color: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            text-align: center;
            max-width: 600px;
/*            width: 100%; */
            transition: box-shadow 0.3s ease;
            margin: auto;
        }
        .search-container:hover {
            box-shadow: 0 0 20px rgba(0,0,0,0.2), 0 0 40px rgba(227,213,208,0.2);
        }
        a {
            cursor: pointer;
            text-decoration: none;
            color: #815e52;
        }
        h1 {
            color: #583426;
            margin-bottom: 1rem;
        }
        .info-icon {
            cursor: help;
            color: #583426;
            font-size: .5em;
            vertical-align: text-top;
        }
        .search-input-container {
            position: relative;
            width: 100%;
        }
        #searchInput {
            width: 100%;
            padding: 0.5rem 2rem 0.5rem 0.5rem;
            font-size: 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 1rem;
        }
        #searchInput_search {
            width: 73%;
            padding: 0.5rem 2rem 0.5rem 0.5rem;
            font-size: 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 1rem;
        }
        #clearSearch_search {
            position: absolute;
            right: 12rem;
            top: 37%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 2.2rem;
            color: #999;
        }
        #clearSearch {
            position: absolute;
            right: -1.5rem;
            top: 35%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 2.2rem;
            color: #999;
        }
        .quick-search-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .tag {
            background-color: #b79386;
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #e3d5d0;
        }
        
button {
    display: inline;
}
        
        #searchResults {
            text-align: left;
            margin-top: 1rem;
        }
        .company-result {
            background-color: #f9f9f9;
            padding: 1rem;
            margin-bottom: 0.5rem;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .company-result:hover {
            background-color: #f1f1f1;
        }
        .trending-section {
            margin-top: 2rem;
        }
        .trending-section h2 {
            color: #583426;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .trending-list {
            list-style-type: none;
            padding: 0;
        } 
        .trending-list-co {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .tag-co {
            background-color: #e3d5d0;
            color: #583426;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            cursor: pointer;
            margin: 0.3rem;
            transition: background-color 0.3s;
        }
        .tag-co:hover {
            background-color: #b79386;
        }
        .trending-list li {
            margin-bottom: 0.25rem;
        }
        .trending-icon {
            color: #ff6b6b;
            margin-right: 0.5rem;
        }
        .notification {
            background-color: #18bc9d;
            color: white;
            padding: 0.5rem;
            border-radius: 4px;
            margin-top: 1rem;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        
        
        
@media (max-width: 600px) {
    h1 {
        font-size: large;
        }
        #searchInput_search {
    width: 50%;
}
    }
