/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    padding: 20px;
    margin: auto;
    max-width: 900px;
}

/* Headings */
h1, h2 {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 15px;
    color: #222;
}

/* Profile Section */
.profile-info {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.profile-info p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.profile-info p:last-child {
    border-bottom: none;
}

/* Buttons */
.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    background-color: #6c5ce7;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1em;
    transition: 0.3s;
}

.btn:hover {
    background-color: #4c40af;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Charts */
.chart-container {
    margin: 20px auto;
    max-width: 500px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    h1, h2 {
        font-size: 1.5em;
    }
    .profile-info, .stats-section {
        padding: 15px;
    }
}
