/**
 * You can place your custom CSS statements here
 * it is better to write everything custom here
 * because this file won't be replaced during upgrade
 * Don't forget to rename this file to "site.css"
 */


 

/*#widget-member-main-subscriptions {
  display: none;
}*/


/* Assuming this is the container for your resource list */
#member-resources {
    display: flex; /* Use flexbox for row layout */
    flex-wrap: wrap; /* Allow items to wrap to the next row */
    list-style: none;
    padding: 0;
}

#member-resources {
    display: flex;
    flex-wrap: wrap;
    margin: -6.6px; /* Compensate for negative margins */
}

#member-resources li {
    flex: 0 0 calc(20% - 5px); /* Distribute items evenly with 2.5px spacing on each side */
    margin: 10px; /* Add 2.5px margin between items */
    border: 1px solid #ccc;
    padding: 1px;
    display: flex;
    flex-direction: column;
}


#member-resources li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.am-list-resources-desc {
    margin-top: 5px;
    color: #666;
}

/* Styles for the filter input */
.am-input-filter-wrapper {
    display: none;
}

.am-input-filter-inner-wrapper {
    position: relative;
}

.am-input-filter {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.am-input-filter-empty {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #999;
}




