body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #f0f8ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(173, 216, 230, 0.2);
}

h1 {
    font-family: Arial, sans-serif;
    font-weight: 500;
    color: #4682b4;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.search-container {
    margin-bottom: 20px;
}

.search-box {
    width: 100%;
    padding: 12px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: 1px solid #b0e0e6;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
}

.search-box:focus {
    outline: none;
    border-color: #4682b4;
    box-shadow: 0 0 5px rgba(173, 216, 230, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
    background-color: white;
    table-layout: fixed;
}

th {
    background-color: #f0f8ff;
    padding: 12px 8px;
    text-align: left;
    font-weight: 500;
    color: #4682b4;
    border-bottom: 2px solid #b0e0e6;
    font-size: 0.9rem;
}

th:first-child {
    width: 150px;
}

th:nth-child(2) {
    width: 150px;
}

th:nth-child(3) {
    width: 150px;
}

th:nth-child(4) {
    width: 200px;
}

td {
    padding: 12px 8px;
    border-bottom: 1px solid #b0e0e6;
    color: #333;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
    font-size: 0.9rem;
}

tr:hover {
    background-color: #f0f8ff;
}

.loading, .error, .no-results {
    text-align: center;
    padding: 20px;
    color: #4682b4;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

.loading {
    font-style: italic;
}

.error {
    font-style: italic;
}

.no-results {
    font-style: italic;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    body {
        padding: 5px;
    }

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .search-box {
        padding: 10px;
        font-size: 14px;
    }

    th, td {
        padding: 8px 4px;
        font-size: 0.8rem;
    }

    /* Make table scrollable horizontally on mobile */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Adjust column widths for mobile */
    th:first-child, td:first-child {
        min-width: 80px;
    }

    th:nth-child(2), td:nth-child(2) {
        min-width: 100px;
    }

    th:nth-child(3), td:nth-child(3) {
        min-width: 80px;
    }

    th:nth-child(4), td:nth-child(4) {
        min-width: 120px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.1rem;
    }

    .search-box {
        font-size: 13px;
    }

    th, td {
        font-size: 0.75rem;
        padding: 6px 3px;
    }
} 