/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 01 2026 | 09:16:14 */
.report-button-container {
    display: flex;
    justify-content: flex-end; /* Sağ tarafa hizalama */
    margin-top: 20px; /* Üstten boşluk */
}

.report-button {
    background-color: #e60000; /* Parlak kırmızı arka plan */
    color: white; /* Beyaz yazı */
    font-weight: bold; /* Kalın yazı */
    padding: 10px 20px; /* Küçük boyut */
    border: none;
    border-radius: 20px; /* Soft yuvarlak köşeler */
    cursor: pointer;
    font-size: 14px; /* Küçük yazı boyutu */
    box-shadow: 0 4px 10px rgba(230, 0, 0, 0.4); /* Parlak gölge efekti */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.report-button:hover {
    background-color: #cc0000; /* Hover durumunda daha koyu kırmızı */
    transform: translateY(-2px); /* Hover durumunda hafif yukarı kayma */
}

.report-button:active {
    transform: translateY(1px); /* Tıklanınca butonun hafif aşağı kayması */
}

#thank-you-message {
    display: none;
    color: green;
    margin-top: 10px;
}
