body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.duyuru-panel {
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: none;
    margin-bottom: 15px;
}
.duyuru-panel .benimh2 {
    margin-top: 0;
    text-align: center;
    color: #333;
    font-size: 24px;
}
.duyuru-panel .benimP {
    color: #666;
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
}
.duyuru-panel .duyuruBenimButton {
    color: #ffffff;
    border: none;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
}
.duyuru-panel .benimButton:hover {
    background-color: #895b5b;
    text-align: center;
    color: #ffffff;
}
.timer {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.timer-warning {
    animation: blink 1s infinite;
    color: red;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.duello-ranking {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.duello-ranking h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.duello-ranking ul {
    list-style-type: none;
    padding: 0;
}

.duello-ranking ul li {
    padding: 5px 0;
    font-size: 16px;
    color: #555;
}

.duello-ranking p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}
.duello-detay {
    margin-top: 10px;
}

.duello-detay-toggle {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
}

.duello-detay-toggle:hover {
    background-color: #45a049;
}

.duello-detay-content {
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}
select.form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #495057;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline: none;
    cursor: pointer;
}

select.form-control:focus {
    border-color: #7066e0;
    box-shadow: 0 0 0 0.2rem rgba(112, 102, 224, 0.25);
}

select.form-control:hover {
    border-color: #7066e0;
}
/* Sadece üyelik kartları için özel stiller */
.membership-type {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
}

.membership-type:hover {
    border-color: #7066e0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.membership-type input[type="radio"] {
    float: right;
    margin-top: 10px;
    margin-right: 5px;
    width: 18px;
    height: 18px;
}

.membership-type h5 {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.membership-type p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 5px;
}

/* Seçili üyelik için stil */
.membership-type input[type="radio"]:checked ~ * {
    color: #7066e0;
}

.membership-type input[type="radio"]:checked ~ p {
    color: #444;
}
@media (max-width: 768px) {
    .duyuru-panel {
        padding: 0; /* Mobil cihazlarda iç boşluğu kaldırın */
        border-radius: 0; /* Köşeleri düzleştirin */
        box-shadow: none; /* Gölgeyi kaldırın */
        margin-bottom: 0; /* Alt boşluğu kaldırın */
    }
}