body {
    margin: 0;
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #1a1a1a;
}

.discord-login-btn {
    background: #5865F2;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner {
    background: linear-gradient(to right, #000000, #1a1a1a);
    padding: 20px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.user-card {
    background: rgb(238, 238, 238);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.user-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 250px;
    background: #1a1a1a;
    color: white;
    padding-top: 80px;
}

.sidebar-item {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-item:hover {
    background: #2a2a2a;
}

.sidebar-item i {
    width: 20px;
}

.main-content {
    margin-left: 250px;
    padding: 20px;
}

.user-card h3 {
    margin: 0;
    color: #333;
}

.discord-id {
    color: #666;
    font-size: 0.9rem;
    margin: 8px 0 16px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 24px;
    border-radius: 8px;
    width: 400px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.button-group {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.save-btn {
    background: #5865F2;
    color: white;
}

.cancel-btn {
    background: #ff4444;
    color: white;
}

.button-group button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.edit-button {
    background: #5865F2;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.hidden {
    display: none !important;
}
