/* Cryptocurrency Exchanges Widget Styles */
.cryptoexchanges-widget {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.cryptoexchanges-widget table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cryptoexchanges-widget thead {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.cryptoexchanges-widget th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cryptoexchanges-widget td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.cryptoexchanges-widget tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.cryptoexchanges-widget tbody tr:last-child td {
    border-bottom: none;
}

.cryptoexchanges-widget a {
    color: #10B981;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cryptoexchanges-widget a:hover {
    color: #059669;
    text-decoration: underline;
}

.cryptoexchanges-widget .rating {
    font-weight: bold;
    color: #10B981;
}

.cryptoexchanges-widget .exchange-name {
    font-weight: 600;
    color: #2D3748;
}

.cryptoexchanges-widget .website-url {
    color: #718096;
    font-size: 13px;
}

/* Responsive design */
@media (max-width: 768px) {
    .cryptoexchanges-widget table {
        font-size: 12px;
    }
    
    .cryptoexchanges-widget th,
    .cryptoexchanges-widget td {
        padding: 8px 10px;
    }
    
    .cryptoexchanges-widget th {
        font-size: 12px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .cryptoexchanges-widget {
        color: #e2e8f0;
    }
    
    .cryptoexchanges-widget table {
        background: #2D3748;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .cryptoexchanges-widget tbody tr:hover {
        background-color: #4A5568;
    }
    
    .cryptoexchanges-widget .exchange-name {
        color: #e2e8f0;
    }
    
    .cryptoexchanges-widget .website-url {
        color: #a0aec0;
    }
}
