/* Container principal */
.panel-body {
    padding: 20px;
}

/* Card da guild */
.guild-card {
    background-color: rgba(35, 28, 21, 0.6); /* fundo levemente transparente */
    border-left: 5px solid #f0c843; /* borda esquerda dourada */
    border-radius: 12px;
    padding: 25px 20px;
    display: block;
    width: 100%;
    margin: 0 auto 20px auto; /* centraliza e adiciona espaçamento */
    color: #ccc;
    transition: transform 0.2s, box-shadow 0.2s;
}

.guild-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Cabeçalho da guild */
.guild-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.guild-logo {
    font-size: 50px;
    margin-right: 15px;
}

.guild-name {
    font-weight: 700;
    font-size: 22px;
    color: #f0c843;
    text-align: center;
}

/* Informações da guild */
.guild-info p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.5;
}

.guild-info strong {
    color: #f0c843;
}

/* Botão de voltar */
.guild-actions {
    text-align: center;
    margin-top: 20px;
}

.btn-back {
    display: inline-block;
    background-color: #f0c843;
    color: #1b1b1b;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    transition: 0.2s;
}

.btn-back:hover {
    background-color: #d4a900;
}
