/* Stil dosyası (örneğin styles.css) */

/* Liste öğelerine temel stil */
ul {
    list-style: none;
    padding: 0;
}

.fiyatlar {
    margin-bottom: 10px;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover efekti */
.fiyatlar:hover {
    background-color: #e0e0e0;
    transition: background-color 0.3s ease;
}
