/* Kripto Listesi Stilleri */
.search-bar {
    text-align: center;
    margin-bottom: 30px;
}

.search-bar input[type="text"] {
    width: 60%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    background-color: rgba(255, 255, 255, 0.15); /* Arama kutusu arka planı */
    color: var(--light-text-color); /* Metin rengi */
    transition: border-color 0.3s ease;
}

.search-bar input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Yer tutucu rengi */
}

.search-bar input[type="text"]:focus {
    border-color: var(--primary-color);
}

#cryptoTable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: var(--module-bg); /* Modül arka planı */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 10px; /* Köşeleri yuvarla */
    overflow: hidden; /* İçerik taşmasını engelle */
}

#cryptoTable th, #cryptoTable td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text-color);
}

#cryptoTable th {
    background-color: rgba(0, 51, 102, 0.8); /* Tablo başlığı için daha koyu okyanus mavisi */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

#cryptoTable tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08); /* Hafif vurgu */
    cursor: pointer;
}

#cryptoTable .favorite-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    color: #ccc; /* Gri yıldız */
    transition: color 0.2s ease;
}

#cryptoTable .favorite-btn.active {
    color: gold; /* Altın rengi yıldız */
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination button {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.pagination button:hover {
    background-color: #007bb5;
}

.pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.pagination span {
    font-weight: bold;
    font-size: 1.1em;
    color: var(--light-text-color);
}