body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    line-height: 1.6;
    padding-bottom: 100px; /* Sabit oynatıcı için alt boşluk */
}

header {
    background-color: #0056b3;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
}

.search-form button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease;
}

.search-form button:hover {
    background-color: #0056b3;
}

.section-title {
    text-align: center;
    font-size: 2em;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 20px;
}

.radio-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.radio-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.radio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.radio-card h3 {
    margin-top: 0;
    color: #007bff;
}

.radio-card p {
    margin: 5px 0;
}

.radio-card .favorite-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    background-color: #28a745;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.radio-card .favorite-btn:hover {
    background-color: #218838;
}

.radio-card .favorite-btn.remove {
    background-color: #dc3545;
}

.radio-card .favorite-btn.remove:hover {
    background-color: #c82333;
}

.no-results {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 1.2em;
    color: #666;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination .page-link {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #007bff;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
}

.pagination .page-link.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .ellipsis {
    padding: 8px;
    color: #6c757d;
}

/* Sabit oynatıcı alanı */
.player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#playing-info {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
    text-align: center;
    margin-bottom: 10px;
}

#current-station {
    color: #007bff;
    margin-left: 5px;
}

#audio-player {
    width: 300px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #666;
    border-top: 1px solid #ddd;
}