.enhanced_features.css {
    /* Base styles for enhanced features */
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Simplified Coin List Styles */
.coin-list-section {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coin-list-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.coin-search {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    margin-right: 1rem;
}

.sort-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sort-button {
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.sort-button:hover {
    background-color: #e0e0e0;
}

.sort-button.active {
    background-color: #4a6fa5;
    color: white;
    border-color: #4a6fa5;
}

.coin-list-table-container {
    overflow-x: auto;
    max-height: 500px;
    overflow-y: auto;
}

.coin-list-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.coin-list-table th {
    background-color: #f0f0f0;
    padding: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.coin-list-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
}

.coin-row:hover {
    background-color: #f5f5f5;
}

.coin-ticker {
    font-weight: bold;
}

.coin-percentage {
    font-weight: bold;
}

.score-bar {
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
}

.score-fill.galaxy {
    background-color: #6a5acd;
}

.score-fill.sentiment {
    background-color: #4caf50;
}

/* Top Projects Analysis Styles */
.top-projects-section {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.2s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.project-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.project-category {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.project-stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-weight: bold;
    color: #333;
}

/* Sector Analysis Styles */
.sector-analysis-section {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sector-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.sector-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.2s;
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.sector-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
}

.sector-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.sector-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.sector-stat {
    display: flex;
    flex-direction: column;
}

.sector-stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.sector-stat-value {
    font-weight: bold;
    color: #333;
}

.sector-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .coin-list-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .coin-search {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .sort-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .project-cards {
        flex-direction: column;
    }
    
    .project-card {
        width: 100%;
    }
    
    .sector-cards {
        grid-template-columns: 1fr;
    }
}
