.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    font-family: sans-serif;
  /*  background-color: #f5f7fa;*/
    min-height: 100vh;
}

.card-wrapper {
    width: 100%;
    max-width: 800px;
}

.edit-btn-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.edit-btn {
    background-color: #4f93f7;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-family: sans-serif;
    min-height: 100vh;
}

.info-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    align-items: center;
}

.logo-img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #ddd;
}

.info-content h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.info-content p {
    margin: 5px 0;
    color: #666;
}

.info-content a {
    color: #4f93f7;
    text-decoration: none;
}
.edit-btn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.profile-card {
    background-color: #f0f0f0;
    color: #333;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 30px;
}
   
    .profile-image {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 3px solid #ddd;
        object-fit: cover;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

.profile-info h2 {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
}

.profile-info p {
    margin: 5px 0;
    font-size: 15px;
    color: black;
}

/* Files Card */
.files-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.files-card h3 {
    margin-top: 0;
}

.files-card ul {
    margin: 0;
    padding-left: 20px;
}

.files-card li {
    margin: 5px 0;
}

/* Stats container */
.stats-container {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.stats-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.stats-card i {
    font-size: 28px;
    margin-bottom: 5px;
}

.stats-card h3 {
    margin: 0;
    font-size: 16px;
}

.stats-card p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .stats-container {
        flex-direction: column;
    }
}