/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #101010;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

h1 {
    color: #00aaff;
}

/* Cabeçalho */
.header {
    width: 100%;
    background-color: #1e1e1e;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 10px;
}

/* Container de Servidores */
.server-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 900px;
}

.guild-box {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
}

.guild-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.guild-name {
    font-size: 16px;
    font-weight: bold;
    color: #00aaff;
}

.guild-status {
    font-size: 14px;
    margin-top: 5px;
}

.guild-buttons {
    margin-top: 10px;
}

.btn {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
}

.btn-configure {
    background-color: #00aaff;
}

.btn-configure:hover {
    background-color: #0088cc;
}

.btn-invite {
    background-color: #ffaa00;
}

.btn-invite:hover {
    background-color: #bdab4c;
}

.btn-login {
    background-color: #7289da;
    padding: 10px 20px;
}

.btn-login:hover {
    background-color: #5b6eae;
}

/* Rodapé */
.footer {
    text-align: center;
    padding: 15px;
    width: 100%;
    background-color: #1e1e1e;
    margin-top: auto;
}

.guild-card {
    display: flex;
    align-items: center;
    background: #1e1e2e;
    color: white;
    width: 400px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
}

.guild-logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: black
}

.guild-info {
    flex-grow: 1;
    margin-left: 10px;
}

.guild-info h2 {
    font-size: 18px;
}

.guild-info p {
    font-size: 14px;
    color: #b0b0b0;
}

.guild-config-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 18px;
}

.guild-config-btn:hover {
    color: #ffcc00; 
}