.elementor-17 .elementor-element.elementor-element-4ea6ecdb{--display:flex;}.elementor-17 .elementor-element.elementor-element-e45ad78{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-5e6acf3 *//* Profile Info Styling */
.user-profile-info {
    background-color: #fffdf8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Helvetica Neue', sans-serif;
    color: #3e3421;
}

.user-profile-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4b3a26;
    margin-bottom: 20px;
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.profile-info-row strong {
    font-weight: 500;
    color: #6a5842;
}

.profile-info-text {
    color: #4a3b2b;
    font-weight: 400;
    word-break: break-word;
}

/* Styling for skills and interests pills */
.profile-info-text span {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 0.9rem;
    text-transform: capitalize; /* Capitalize first letter of each word */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .user-profile-info {
        padding: 15px;
    }

    .user-profile-info h3 {
        font-size: 1.2rem;
    }

    .profile-info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-info-row strong {
        margin-bottom: 5px;
    }
    
}


/* Edit Profile Button Styling */
.edit-profile-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.edit-profile-button:hover {
    background-color: #45a049; /* Darker green on hover */
}/* End custom CSS */