/* Reset and base styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background-color: #f4f4f4; } /* Header */ header { background-color: #ff6b6b; color: white; padding: 1rem; text-align: center; } nav a { margin: 0 1rem; color: white; text-decoration: none; } /* Main content */ main { max-width: 1200px; margin: 0 auto; padding: 2rem; } /* Profiles section */ .profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; } .profile-card { background: white; border-radius: 8px; padding: 1rem; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; } .profile-card img { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 1rem; } .chat-btn { background: #ff6b6b; color: white; border: none; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; } /* Chat section */ .chat-container { background: white; border-radius: 8px; padding: 1rem; box-shadow: 0 2px 5px rgba(0,0,0,0.1); max-width: 600px; margin: 0 auto; } .chat-messages { height: 300px; overflow-y: auto; border-bottom: 1px solid #ddd; margin-bottom: 1rem; } .message { padding: 0.5rem; margin: 0.5rem 0; background: #e9ecef; border-radius: 4px; } .message.reply { background: #ff6b6b; color: white; text-align: right; } .chat-input { width: 80%; padding: 0.5rem; border: 1px solid #ddd; border-radius: 4px; } .send-btn { background: #28a745; color: white; border: none; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; } /* Footer */ footer { text-align: center; padding: 1rem; background: #333; color: white; } /* Responsive design */ @media (max-width: 768px) { .profile-grid { grid-template-columns: 1fr; } .chat-input { width: 70%; } }