/* 
 Theme Name:   hello-elementor-child
 Theme URI:    https://goldenwattlestudios.com.au/
 Description:  Child theme of Hello Elementor
 Author:       Golden Wattle Studios
 Author URI:   https://goldenwattlestudios.com.au
 Template:     hello-elementor
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/
.custom-member-feed .member-feed-item {
    border-radius: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px; /* Adds spacing between posts */
}

/* Container for the shirt selection */
.shirt-selection-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Image container */
.shirt-image-container img {
    max-width: 200px; /* Set a max width to keep the image small */
    height: auto; /* Ensure the image maintains its aspect ratio */
    border-radius: 8px;
}

/* Dropdown container */
.shirt-variations-container {
    flex: 1;
}

/* On mobile, stack the image above the dropdowns */
@media (max-width: 768px) {
    .shirt-selection-container {
        flex-direction: column;
        align-items: center;
    }

    .shirt-image-container img {
        max-width: 100%; /* Make the image full width on mobile */
    }
}
