body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    font-size: 16px;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.main-content {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-height: 100vh;
}

.table-container {
    flex: 1.1;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.note-container {
    flex: 1.3;
    background-color: #f8f9fa;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

th,
td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

th {
    background-color: #f8f9fa;
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: #f8f9fa;
}

.note-display {
    margin-top: 0.5rem;
    background-color: white;
    border-radius: 4px;
    padding: 1rem;
    line-height: 1.6;
    font-size: 1rem;
    color: #212529;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.clickable {
    cursor: pointer;
    color: #007bff;
    border: none;
    background: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.clickable:hover {
    background-color: #e7f3ff;
    text-decoration: none;
}

h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #212529;
}

@media (max-width: 767px) {
    .main-content {
        flex-direction: column;
    }
    
    .container {
        padding: 0.5rem;
    }
    
    th,
td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .clickable {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}
