
.employee-dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.welcome-message {
    text-align: center;
    margin-bottom: 20px;
}

.stock-search-section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.stock-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px; /* Adjust max-width as needed */
}

.search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

#search-box {
    width: 100%;
}

#suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}


.stock-details-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    max-width: 15em;
    max-height: 10em;
}

.logo img {
    width: 100%;
    height: 100%;
}

.card {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%; /* Make card take more width on smaller screens */
    max-width: 400px; /* Limit max width on larger screens */
    height: auto; /* Allow height to adjust */
    margin: 2em auto; /* Adjust margin */
}

.btn-stock {
    text-align: center;
    margin-top: 1em; /* Add top margin when stacked */
}

@media (max-width: 767px) {
    .stock-container {
        padding: 0 15px;
    }
}
