* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #ffffff;
    color: #000000;
    height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Main Content */
.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
}

.logo {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

/* Search Box */
.search-container {
    position: relative;
    display: inline-block;
}

.search-input {
    width: 300px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.search-input:focus {
    border-color: #999;
}

.search-input::placeholder {
    color: #999;
}

/* Suggestions Dropdown */
.suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: #f5f5f5;
}

.suggestion-item .ticker {
    font-weight: 500;
    font-size: 0.95rem;
}

.suggestion-item .company-name {
    font-size: 0.85rem;
    color: #666;
    margin-left: 1rem;
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .search-input {
        width: 250px;
        font-size: 0.9rem;
    }
}