/* Change the font of the group title */
.group-container .group .header {
    font-family: sans-serif;
    /* Replace 'Your Desired Font' with your chosen font */
    /* Add other font-related properties (e.g., font-size, font-weight, etc.) here as needed */
}

/* Change the font of the location header */
.group-container h2 {
    font-family: sans-serif;
    /* Replace 'Your Desired Font' with your chosen font */
    /* Add other font-related properties (e.g., font-size, font-weight, etc.) here as needed */
}


.group-container {
    display: flex;
    flex-direction: column;
}

.group {
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.widget {
    display: none;
    /* Initially hide widgets */
    border: none;
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    width: 100%;
    max-width: 250px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
    float: left;
    position: relative;
}

.info {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}

.header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    margin-left: 20px;
    /* Add cursor pointer for the group headers */
}

.icon {
    margin-left: 0px;
    /* Adjust the margin-left to your preference */
    margin-top: 0px;
    /* Adjust the margin-top to vertically center the icon */
    color: #414141;
    vertical-align: middle;
    position: absolute;
    right: 45px;
    /* Position the icon at the right side of the header */
}

.iconSmall {
    margin-right: 10px;
    /* Increased space between icon and text */
    color: #adabab;
    /* Grey color for the icons */
    vertical-align: middle;
    /* Vertically align icon with text */
    position: absolute;
    /* Use absolute positioning for the icon */
    left: 15px;
    /* Move the icon to the very left */

    /* Add more CSS styling as needed */
}