/* USED BY THE EXPAND/COLLAPSE FUNCTIONALITY */

.maximised
{
			position: fixed!important; 
    		top: 10px!important;
			left: 0px!important;
			z-index: 110!important;
			width: 99vw!important;
			height: calc(100% - 65px)!important;
			background-color: rgb(255,255,255)!important;
}

.hidden
{
	display:none!important;
}

.indicator-change-size-button
{
	position:absolute;
	top:5px;
	right:5px;
	width=50px;
	height:20px;
	z-index:120;
	display:block;
	border-radius: 50%;
  	border:2px solid rgb(128, 128, 128);
	padding:3px;
	font-size:18px;

}

.lui-icon--expand, .lui-icon--collapse{
	font-size:18px;
}



.indicator-change-size-button.button-expand {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    background-color: #004494; 
    color: #fff; 
    border: none; 
    border-radius: 50%; 
    padding: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    cursor: pointer; 
    transition: background-color 0.3s ease;
}

.indicator-change-size-button.button-expand:hover {
    background-color: #0056b3; 
}

.popupToolbar.lui-icon.lui-icon--expand {
    font-size: 18px;
	font-weight:800;
}

.indicator-change-size-button.button-collapse {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    background-color: #004494; 
    color: #fff; 
    border: none; 
    border-radius: 50%; 
    padding: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    cursor: pointer; 
    transition: background-color 0.3s ease;
}

.indicator-change-size-button.button-collapse:hover {
    background-color: #0056b3; 
}

.popupToolbar.lui-icon.lui-icon--collapse {
    font-size: 18px;
	font-weight:800;
}
/*---------------------Modal CMEF will not be refreshed----------------------*/
      .indicator-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .indicator-modal {
        background: #ffffff;
        width: 100%;
        max-width: 640px;
        padding: 24px 28px;
        border-radius: 6px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
        border-top: 4px solid #f0ab00;
    }

    .indicator-modal h2 {
        margin: 0 0 16px 0;
        font-size: 28px;
        font-weight: 700;
        color: #1b1b1b;
    }

    .indicator-modal p {
        margin: 0 0 14px 0;
        line-height: 1.6;
        color: #333333;
        font-size: 16px;
    }

    .indicator-modal a {
        color: #004494;
        text-decoration: underline;
    }

   .indicator-modal-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

   .indicator-btn-primary {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #004494;
    border-radius: 4px;
    background: #004494;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
}

.indicator-btn-primary:hover,
.indicator-btn-primary:focus {
    background: #003776;
    border-color: #003776;
}
.indicator-btn-secondary {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #004494;
    border-radius: 4px;
    background: #f0f5ff;
    color: #004494;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.indicator-btn-secondary:hover,
.indicator-btn-secondary:focus {
    background: #dbe8ff;
    border-color: #003776;
    color: #003776;
    text-decoration: none;
}

.indicator-btn-secondary:active {
    background: #b9d0f7;
    border-color: #003776;
    color: #002b5c;
}

.indicator-btn-primary,
.indicator-btn-secondary {
    min-height: 44px;
}
