/* Increase spacing between header elements and give more space to email */
.head-list {
    display: flex;
    justify-content: space-around !important; /* Changed from space-between to space-around for better distribution */
    align-items: center;
    max-width: 700px;
    width: 100%;
    margin: 0 10px;
}

/* Give more space to the email item specifically */
.head-list .item:nth-child(1) {
    flex: 1.5 !important; /* Increase the flex ratio to give more space */
    margin-right: 15px !important; /* Add more margin on the right */
}

/* Adjust spacing for all items */
.head-list .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    margin: 0 10px !important; /* Increased from 5px to 10px */
}

/* Ensure the email text has room to display */
.head-list .item .info p {
    font-size: 12px !important;
    word-break: break-all !important; /* Better handling of long email addresses */
    max-width: 100% !important; /* Ensure it doesn't overflow its container */
}
