/* General Profile Card Styles */
.profile-card {
    width: 100%;
    /* max-width: 600px; */
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    border: 1px solid #ddd;
    padding: 20px;
}

/* Header Styles */
.profile-header {
    background-color:darkblue;
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd; /* Optional: Add a border at the bottom of the header */
}

.profile-header h2 {
    margin: 0;
    font-size: 24px;
}

.profile-header .residence {
    font-size: 14px;
    color: #dcdcdc;
}

/* Body Styles */
.profile-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between columns */
}

/* Two-Column Layout */
.profile-info, .profile-social, .profile-palmares {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 20px); /* Equal width for two columns */
    box-sizing: border-box;
}

.profile-info h3, .profile-social h3, .profile-palmares h3 {
    margin: 0;
    padding: 10px;
    background-color:darkgrey; /* Blue background color */
    color: #fff; /* White text color */
    border-radius: 5px; /* Rounded corners */
}

.profile-info p, .profile-social p, .profile-palmares p {
    margin: 0;
    padding: 10px; /* Optional padding */
    border: 1px solid #ddd; /* Border around content */
    border-radius: 5px; /* Rounded corners for content */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .profile-info, .profile-social, .profile-palmares {
        flex: 1 1 100%; /* Full width on smaller screens */
    }
}

/* Additional Styles */
.profile-image {
    text-align: center;
    padding: 20px;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
