/* Class Blops Styles */
#class-blops-modal {
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.class-blop-card {
    background: #1a2538;
    border: 3px solid #ffd700;
    border-radius: 16px;
    padding: 22px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.class-blop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffeb3b;
}

.class-blop-card h4 {
    margin: 0 0 12px 0;
    color: #ffd700;
}

.class-blop-card p {
    color: #b0c4de;
    font-size: 0.95rem;
    line-height: 1.4;
}

.class-blop-card small {
    color: #777;
    display: block;
    margin-top: 12px;
}

/* Small Blop Room */
#small-blop-room {
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.4);
}

.room-member {
    background: #0f1626;
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #ffd700;
}

.room-member img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* Modal buttons */
button {
    transition: all 0.2s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    #class-blops-modal > div {
        width: 98%;
        margin: 10px;
    }
    
    .class-blop-card {
        padding: 18px;
    }
}