/* Frontend Styles for Meeting Agendas */

/* Recent Updates Section */
.mam-updates-section {
    /*padding: 20px;*/
    /*max-width: 900px;*/
    margin: 0 auto;
    background-color: white;
    /*border: 1px solid #ddd;*/
}

.mam-update-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 0;
}

.mam-update-item:last-child {
    margin-bottom: 0;
}

.mam-icon-blue {
    color: #0066cc;
    font-size: 18px;
    margin-right: 12px;
/*     margin-top: 2px; */
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.mam-icon-blue svg {
    fill: #0066cc;
    width: 100%;
    height: 100%;
}

.mam-text-blue {
    color: #0066cc;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}

.mam-text-blue a {
    color: #0066cc;
    text-decoration: none;
}

.mam-text-blue a:hover {
    /*text-decoration: underline;*/
    color: #0066cc !important;
}

.mam-badge-new {
    font-weight: bold;
    margin-right: 5px;
    color: #ff0000;
}

/* Accordion Section */
.mam-accordion-container {
    /*padding: 0 20px 20px 20px;*/
    /*max-width: 900px;*/
    margin: 0 auto;
    background-color: white;
    /*border: 1px solid #ddd;*/
}

.mam-accordion-wrapper {
    border: 1px solid #ffffff;
    border-radius: 7px;
    overflow: hidden;
}

.mam-accordion-section {
    border-bottom: 3px solid #ffffff;
}

.mam-accordion-section:last-child {
    border-bottom: none;
}

.mam-header-accordion {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    background-color: #0A66C2;
    user-select: none;
    border-radius: 7px 7px 0 0;
}

.mam-toggle-btn {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.mam-toggle-btn:hover{
	 width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 10px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: bold !important;
    background-color: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
}
.mam-toggle-icon {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.mam-title-fy {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    flex: 1;
}

.mam-content-area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background-color: white;
}

.mam-list-wrapper {
    padding: 12px 12px 12px 40px;
/* 	overflow:scroll;
	height: 600px; */
}

.mam-item-list {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 4px 0;
}

.mam-item-list:last-child {
    margin-bottom: 0;
}

.mam-icon-list {
    color: #0066cc;
    font-size: 18px;
    margin-right: 10px;
/*     margin-top: 2px; */
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.mam-icon-list svg {
    fill: #0066cc;
    width: 100%;
    height: 100%;
}

.mam-text-list {
    color: #0066cc;
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
}

.mam-text-list a {
    color: #0066cc;
    text-decoration: none;
}

.mam-text-list a:hover {
/*     text-decoration: underline; */
	color:#0066cc;
}

/* Active states */
.mam-accordion-section.active .mam-header-accordion {
    background-color: #0066cc;
}

.mam-accordion-section.active .mam-toggle-btn {
    color: white;
}

.mam-accordion-section.active .mam-toggle-icon {
    fill: white;
    transform: rotate(180deg);
}

.mam-accordion-section.active .mam-title-fy {
    color: white;
}

.mam-accordion-section.active .mam-content-area {
    max-height: 3000px;
    border: 2px solid #0066cc;
    border-top: none;
    margin: 0 0 2px 0;
    transition: max-height 0.5s ease-in-out;
}

/* No content message */
.mam-no-content {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .mam-updates-section,
    .mam-accordion-container {
        padding: 15px;
    }
    
    .mam-text-blue,
    .mam-text-list,
    .mam-title-fy {
        font-size: 16px;
    }
    
    .mam-list-wrapper {
        padding: 12px;
    }
}

@media screen and (max-width: 480px) {
    .mam-text-blue,
    .mam-text-list,
    .mam-title-fy {
        font-size: 14px;
    }
    
    .mam-icon-blue,
    .mam-icon-list {
        width: 16px;
        height: 16px;
    }
}
