
    .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Center vertically */
    margin-top: 0;
}

.modal-content {
    width: 980px;
    height: 600px; /* Fixed height */
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    font-family: 'Raleway', sans-serif;
    border-radius: 0;
}

.modal-body {
            padding: 0;
            background: white;
            position: relative;
            border-radius: 0;
        }

        .left-section {
            color: white;
            display: flex;
            flex-direction: column;
            /* justify-content: center; */
            width: 600px;
            min-height: 600px;
            position: relative;
        }

.right-section {
    padding: 30px;
    background: white;
    width: 376px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative; /* Needed for footer positioning */
}

        .instagram-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            margin-top: 0;
        }

        .instagram-handle {
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            top: -7px;
            left: 10px;
        }

        .instagram-icon {
            width: 28px;
            height: 28px;
            background: transparent;
            border: 1px solid #212121;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(0, 0, 0);
            position: relative;
            left: -4px;
            top: -1px;
        }

        .handle-text {
            color: #333;
            font-weight: 500;
            font-size: 20px;
            font-family: 'Raleway', sans-serif;
        }

    .main-text {
    font-size: 16px;
    line-height: 25.6px;
    color: #212121;
    font-family: 'Raleway', sans-serif;
    position: relative;
    left: 3px;
    top: 2px;
    width: 100%;
    height: 470px; /* FIXED height for scrollable area */
    overflow-y: auto;
    padding-right: 10px; /* for scrollbar spacing */
    padding-bottom: 150px;
}

.date-section {
    color: #212121;
    font-size: 14px;
    line-height: 22.4px;
    position: absolute;
    bottom: 50px;
    left: 13px;
    background: #ffffff;
    width: 600px;
    padding: 20px;
}


        .btn-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            opacity: 0.8;
            position: relative;
            left: -2px;
            top: -8px;
        }

        .btn-close:hover {
            opacity: 1;
            color: white;
        }

        .trigger-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
        }

        .trigger-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            color: white;
        }

        @media (max-width: 768px) {
            .elder-abuse-title {
                font-size: 2.5rem;
            }
            
            .left-section {
                padding: 30px 20px;
                min-height: 300px;
            }
            
            .right-section {
                padding: 20px;
                min-height: 300px;
            }
        }

        .video-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}


.btn-close {

  --bs-btn-close-focus-shadow: transparent !important;
}


/* Existing styles remain same... only responsive part updated */
@media (max-width: 992px) {
  .modal-dialog {
    width: 100%;
    margin: 0 auto;
  }

  .modal-content {
    width: 100%;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0;
  }

  .modal-body {
    flex-direction: column;
    padding: 0;
  }

  .left-section, .right-section {
    width: 100% !important;
    min-height: auto !important;
    padding: 20px;
  }

  #videoContainer img {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
    object-fit: cover;
  }

  #playButton {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .main-text {
    height: auto;
    max-height: 300px;
    overflow-y: auto;
  }

  .date-section {
    position: static;
    width: 100%;
    padding: 10px 0 0;
    margin-top: 15px;
    text-align: left;
  }

  .instagram-header {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .handle-text {
    font-size: 16px;
  }

  .btn-close {
    font-size: 1.2rem;
    top: 0;
    right: 0;
    position: absolute;
  }
}
