/* Header Styles */
.company-header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    max-height: 80px;
    margin-bottom: 10px;
}

.company-name {
    margin: 0;
    color: #343a40;
    font-weight: 600;
    text-align: center;
}

.company-slogan {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
}

.home-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

.result-table th {
    background-color: #f8f9fa;
}

/* Form Styles */
.search-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .home-button {
        position: static;
        margin-top: 15px;
        transform: none;
        display: flex;
        justify-content: center;
    }
}
