/* forumotion_style.css */
body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 2 cards per row */
    gap: 20px;
}

.user-card {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.user-card img {
    border-radius: 6px;
    margin-top: 8px;
}

.left {
    margin-right: 15px;
    text-align: center;
    width: 120px;
}

.right {
    flex-grow: 1;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
