body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.source {
    color: #666;
    font-size: 0.9em;
    margin: 10px 0;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: white;
    font-weight: 500;
    position: sticky;
    top: 0;
}

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

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.word-num {
    color: #666;
    font-weight: normal;
    width: 50px;
}

.word {
    font-weight: 500;
    color: #333;
}

.translation {
    color: #666;
    max-width: 300px;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    th, td {
        padding: 8px 10px;
        font-size: 14px;
    }
} 

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.source-info, .disclaimer {
    padding: 1rem;
}

.disclaimer {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid #e9ecef;
    margin-top: 1rem;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .source-info, .disclaimer {
        text-align: center;
    }
} 

/* Navigation Styles */
.navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    background-color: #f0f0f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #e0e0e0;
    color: #333;
}

.nav-link.active {
    background-color: #4CAF50;
    color: white;
}

/* Coming Soon Styles */
.coming-soon {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 40px auto;
    max-width: 800px;
}

.coming-soon h2 {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.coming-soon p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.coming-soon-details {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.coming-soon-details ul {
    list-style-type: none;
    padding: 0;
}

.coming-soon-details li {
    padding: 10px 0;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.coming-soon-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 80%;
        text-align: center;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
} 

.resource-link {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.resource-link:hover {
    color: #45a049;
}

.resource-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4CAF50;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.resource-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
} 