/**
 * CSS styles for poker room pages
 */

/* Single Poker Room Page */
.poker-room-single {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
}

.poker-room-single .entry-title {
    color: #1a2f5c;
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.poker-room-single-content {
    padding: 0;
}

.poker-room-details {
    display: flex;
    flex-wrap: wrap;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.room-logo {
    flex: 0 0 200px;
    margin-right: 30px;
    margin-bottom: 20px;
}

.poker-room-logo-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.room-info {
    flex: 1;
    min-width: 250px;
}

.room-rating, .room-bonus, .room-rakeback {
    margin-bottom: 15px;
    font-size: 17px;
}

.rating-value {
    background: #1a2f5c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 5px;
    font-size: 18px;
}

.room-register {
    margin-top: 20px;
}

.btn-large {
    display: inline-block;
    padding: 12px 30px;
    background: #28a745;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #218838;
    color: #fff;
    text-decoration: none;
}

.room-description {
    margin-bottom: 30px;
}

.room-description h2 {
    color: #1a2f5c;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.room-description p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.back-to-rooms {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-to-rooms a {
    color: #1a2f5c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-rooms a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .poker-room-details {
        flex-direction: column;
        padding: 15px;
    }
    
    .room-logo {
        margin-right: 0;
        width: 100%;
        max-width: 200px;
        margin: 0 auto 20px;
    }
    
    .room-info {
        text-align: center;
    }
    
    .btn-large {
        width: 100%;
        display: block;
        text-align: center;
    }
}