body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.profile-card, .activities-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(to right, #00ff9d, #00b7ff);
  
    outline-offset: -4px;
    padding: 3px;
    margin-bottom: 15px;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-email {
    color: #666;
    margin-bottom: 10px;
}

.profile-bio {
    text-align: center;
    margin-bottom: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border: 2px solid #333;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
}

.btn i {
    margin-right: 8px;
    color: inherit;
}

.btn:hover {
    background-color: #333;
    color: #fff;
}

.badges-section, .points-section {
    margin-top: 20px;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: #e0e0e0;
    border-radius: 15px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 14px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.activity-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
}

.activity-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.activity-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* @media (max-width: 768px) {
    .profile-header {
        flex-direction: row;
        text-align: left;
    }

    .profile-picture {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
        border: 3px solid #e0e0e0;
        margin-bottom: 15px;    }
} */

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.copy-link {
    cursor: pointer;
}

.copy-link:hover {
    text-decoration: underline;
}

.profile-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: 20px;
    /* border: 1px solid #e0e0e0;
    border-radius: 5px; */
    overflow: hidden;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #e0e0e0;
}

.stat-item h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.badges-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.badge {
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.no-badge {
    color: #888;
    font-style: italic;
}

