/*
Theme Name: Sildenafil
Theme URI: https://www.sildenafil.net.tr
Author: Sildenafil
Author URI: https://www.sildenafil.net.tr
Description: Sildenafil
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Sildenafil
*/

/* Genel Stiller */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Logo Stili */
.bwp-logo-text {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Header Stili */
.bwp-logo-container {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
    margin-bottom: 20px;
}

/* Başlık Stili */
.bwp-post-title {
    text-align: center;
    margin-bottom: 10px;
}

.bwp-single-post-header-separator {
    width: 50px;
    height: 4px;
    background: #333;
    margin: 0 auto 20px;
}

/* İçerik Stili */
.bwp-content {
    background-color: #fff;
    padding: 0px;
    border-radius: 5px;
}

/* Galeri için Flexbox Düzeni */
.custom-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Resimler arası boşluk */
    justify-content: space-between; /* Eşit boşluk */
    margin: 20px 0; /* Resimler ile metin arasında boşluk */
}

.custom-gallery .gallery-item {
    flex: 1 1 calc(50% - 10px); /* İki sütun düzeni */
    box-sizing: border-box;
    margin-bottom: 20px; /* Alt boşluk */
}

.custom-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Köşeleri yuvarla */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .custom-gallery .gallery-item {
        flex: 1 1 100%; /* Mobilde tek sütun */
    }
}

/* Footer Stili */
.bwp-site-footer {
    background-color: #fff;
    color: #000;
    padding: 20px 0;
    text-align: center;
}

.bwp-footer-menu-list {
    list-style: none;
    padding: 0;
}

.bwp-footer-menu-list li {
    display: inline;
    margin: 0 10px;
}

.bwp-footer-menu-list li a {
    color: #000;
    text-decoration: none;
}

.bwp-footer-menu-list li a:hover {
    text-decoration: underline;
}

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 16px;
        text-align: center;
    }
    th, td {
        padding: 12px 15px;
        border: 1px solid #ddd;
    }
    thead {
        background-color: #6c757d; /* Gri renk */
        color: white;
    }
    tbody tr:nth-child(even) {
        background-color: #f8f9fa;
    }
    tbody tr:hover {
        background-color: #e9ecef;
    }
.custom-gallery .gallery-item figcaption {
    text-align: center;
    margin-top: 8px;
    font-size: 0.9em;
    color: #555;
    text-transform: uppercase;
    font-weight: bold;
}