<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1a1a1a;
    color: #ffffff;
}

header {
    background-color: #121212;
    color: white;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: bold;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    font-size: 1.25em;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 400px;
}

.search-container input {
    padding: 15px;
    font-size: 1.25em;
    border: none;
    background-color: transparent;
    color: #ffffff;
    width: 100%;
}

.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-container button,
.search-container .random-button {
    padding: 15px 30px;
    font-size: 1.1em;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 5px;
}

.search-container button {
    background-color: #007bff;
}

.search-container button:hover {
    background-color: #0056b3;
}

.search-container .random-button {
    background-color: #ff6600;
}

.search-container .random-button:hover {
    background-color: #cc5200;
}

@media (min-width: 768px) {
    .search-container {
        flex-direction: row;
        justify-content: center;
    }

    .search-box {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .button-container {
        width: auto;
    }
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.scoreboard {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns for desktop */
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.score-item {
    text-align: center;
    padding: 15px;
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.score-item h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: #007bff;
}

.score-item p {
    margin: 0;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.company-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.company-description {
    flex: 1;
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.company-description h3 {
    font-family: 'Montserrat', sans-serif;
    color: #007bff;
    margin-bottom: 10px;
}

.company-description p {
    line-height: 1.6;
}

.company-map {
    flex: 0 0 300px;
    height: 200px;
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.company-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chart-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.divider {
    flex-grow: 1;
    height: 1px;
    background-color: white;
    max-width: 200px;
}

.chart-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: white;
    text-align: center;
    margin: 0 20px;
}

.chart-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.chart-item {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    position: relative;
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-item canvas {
    max-width: 100%;
    max-height: 100%;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border: 4px solid #3a3a3a;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-ellipsis::after {
    content: '...';
    animation: ellipsis 1s steps(4, end) infinite;
}

@keyframes ellipsis {
    0% { content: '...'; }
    25% { content: '   '; }
    50% { content: '.  '; }
    75% { content: '.. '; }
    100% { content: '...'; }
}

@media (min-width: 768px) {
    .chart-item {
        width: 48%;
    }
}

.star-rating {
    color: #FFD700; /* Gold color */
    font-size: 1.2em;
}

.star-rating .half-star {
    position: relative;
    display: inline-block;
}

.star-rating .half-star::before {
    content: '☆';
    color: #FFD700;
}

.star-rating .half-star::after {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
}

.dollar-sign {
    font-size: 1.5em;
    margin-right: 5px;
    margin-left: 10px;
}

footer {
    padding: 20px 0;
    background-color: #121212;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#company-name {
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
}

.newsletter {
    margin-bottom: 20px;
}

.newsletter h3 {
    margin-bottom: 10px;
}

.newsletter input {
    padding: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.buy-me-coffee {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .scoreboard {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .score-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 10px;
    }
    
    footer .container {
        flex-direction: column;
    }

    .footer-content {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .buy-me-coffee {
        margin-top: 20px;
        justify-content: center;
    }
}
</pre></body></html>