/* welsh-welcome-style.css */
.welsh-welcome-container {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    margin-top: 20px; /* Add margin-top to lift the container higher */
}

.circular-avatar-container {
    overflow: hidden;
    border-radius: 50%;
    max-width: 75px; /* Adjust max-width as needed */
    margin-right: 20px; /* Add margin-right for spacing between avatar and content */
}

.circular-avatar img {
    border-radius: 50%;
    max-width: 100%; /* Make sure the avatar stays within its container */
}

.welsh-welcome-content {
    max-width: calc(100% - 100px); /* Adjust max-width based on avatar size and spacing */
}

.welsh-welcome-message {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px; /* Adjust font size as needed */
    margin-top: 0; /* Adjust top margin to align with avatar */
    margin-bottom: 0;
}

.welsh-welcome-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px; /* Adjust font size as needed */
    font-weight: bold;
    margin-bottom: 10px;
}

.welsh-welcome-divider {
    display: none; /* Remove this line to keep dividers */
}

.show-less-button {
    display: none;
}
