/* Tabela de Guilds */
.guilds-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #1b1b1b;
    border-radius: 12px;
    overflow: hidden;
}

.guilds-table th,
.guilds-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.guilds-table th {
    background-color: #222;
    color: #f0c843;
    font-weight: 700;
}

.guilds-table tr:nth-child(even) {
    background-color: #222;
}

.guilds-table tr:nth-child(odd) {
    background-color: #1c1c1c;
}

.guild-logo {
    font-size: 24px;
    text-align: center;
}

/* Botões de ação */
.btn-guild {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    color: #1b1b1b;
    background-color: #f0c843;
    transition: 0.2s;
}

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

.btn-guild.delete {
    background-color: #a83232;
    color: #fff;
}

.btn-guild.delete:hover {
    background-color: #ff3c3c;
}

/* Criar Guild */
.create-guild {
    margin-top: 20px;
    text-align: center;
}

.btn-create-guild {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    background-color: #f0c843;
    color: #1b1b1b;
    transition: 0.2s;
}

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

/* Mensagem de ajuda */
.guild-help {
    margin-top: 20px;
    background-color: #222;
    padding: 15px 20px;
    border-left: 5px solid #f0c843;
    border-radius: 8px;
    color: #ccc;
    font-size: 14px;
}

.guild-help ul {
    margin-top: 5px;
    padding-left: 20px;
}

.guild-help li {
    margin-bottom: 5px;
}