.modal {
    display: none;
    position: fixed;
    z-index: 1200 !important;
    padding-top: 0px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
/*     background-color: rgba(0, 0, 0, 0.9); */
    align-items: center;
    justify-content:center !important;
    
}

.modal-content {
    min-width: 100wh !important;
    min-height:100vh !important;
    width: 100vw;
    height: 100vh;
    margin-top: 0px;
    border-radius:0px !important;
}

.close {
    position: absolute !important;
    top: 15px !important;
    right: 25px !important;
    color: white !important;
    font-size: 35px !important;
    cursor: pointer !important;
    opacity:1!important;
    z-index: 1000 !important;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

.disclosure-heading{
	color: #d8281a; 
	font-family: 'Poppins', sans-serif; 
	box-shadow: 0px 0px 5px 0px rgb(0 0 0/ 0.2); 
	padding: 10px 20px; 
	text-align: center; 
	font-weight: 600; 
	font-size: 18px; 
	line-height: 34px; 
	letter-spacing: 0.3px; 
	margin-bottom: 0px;
}

.disclosure-row{
	color: #fff; 
	background: #0a1b45; 
	font-size: 16px; 
	font-family: 'Poppins', sans-serif; 
	font-weight: 600; 
	letter-spacing: 0.3px;
	padding: 12px 15px; 
	border-right: 1px solid #4a4a4a;
}

.disclosure tbody tr td{
  padding: 10px;
  padding-left: -10px;
  color: #000;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  padding-left: 20px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    animation: fadeInLeft 1s ease forwards;
}

.doc-text {
	color:#1271dc !important;
	font-size:15px !important;
	font-weight:600 !important;
}

.doc-text:hover{
	color:#9a9996!important;
}

/* Overlay with blur effect */
.fancy-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    animation: fadeIn 0.6s forwards;
}

/* Popup card */
.fancy-content {
    position: relative;
    background: linear-gradient(135deg, #f8f1f1, #75f483);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    max-width: 80%;
    max-height: 80%;
    text-align: center;
    transform: scale(0.5);
    animation: bounceIn 0.6s forwards;
}

.fancy-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 15px;
}

/* Close button */
.fancy-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    text-shadow: 0 0 5px black;
}

/* Animations */
@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    80% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}
