body {
	font: 0.9em/1.5 'Segoe UI', Verdana,Arial,Helvetica,sans-serif !important;
	height:100%;
	margin:0;
}

a { text-decoration: none !important; }
a:hover { color:#af7705; }

.crsrHlp { cursor:help; }

.pgwrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
}
.pgmain { flex: 1; }
    
.form-check-input {
  border: 1px solid #333 !important; /* thicker, darker border */  
}

.homeRowG {
  background-color: #fff;
  border: none;
  outline: none;
  border-radius: 8px; 
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.homeRowG:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.homeCardMain {
  transition: max-width 0.5s ease, height 0.5s ease;
  overflow: hidden; /* Prevent scrollbars during animation */
}
.homeCardBody { padding: 2rem; opacity: 0; animation: fadeIn 1s ease-in forwards; }

.btn.extapp-btn {
  background: linear-gradient(135deg, #15621e, #af7705);
  color: white !important;
  padding: 12px 20px;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  outline: none; 
}

.btn.extapp-btn:hover { background: linear-gradient(135deg, #af7705, #15621e); transform: translateY(-3px); }
.btn.extapp-btn:focus { background: #15621e; box-shadow: 0 0 5px 2px rgba(175, 119, 5, 0.5); }
        
.topnav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(to right, #15621e, #af7705);
	padding: 0.5rem 1rem;
	color: white;
	flex-wrap: wrap;
}

.logo { flex: 0 0 auto; min-width: 120px; }
.logo img.site-logo { height: 50px; width: auto; max-width: 100%; }

.dot-grid {
	display: grid;
	grid-template-columns: repeat(3, 4px);
	gap: 2px;
	cursor: pointer;
	padding: 1em;
}

.dot { width: 0.3em; height: 0.3em; background-color: white; border-radius: 50%; }

/* Sidebar Panel */
.sidebar {
	position: fixed;
	top: 0;
	left: -300px;
	height: 100vh;
	width: 300px;
	background-color: #fff;
	box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
	transition: left 0.3s ease;
	z-index: 1001;
	overflow-y: auto;
}

.sidebar.show { left: 0; }

/* Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	display: none;
	z-index: 1000;
}

.overlay.show { display: block; }

/* User Profile */
.sidebar .user-profile {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.user-profile img { width: 40px; height: 40px; border-radius: 50%; margin-right: 12px; }

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75em;
  height: 1.75em;
  border-radius: 50%;  
  background: linear-gradient(135deg, #15621e, #af7705);
  color: white;
  font-size: 1.5em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.icon-circle:hover {
  transform: scale(1.05);
}


.username { font-size: 1.1em;  color: #333; }

/* App Grid */
.sidebar .app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}

.app-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: #f5f5f5;
	border-radius: 6px;
	text-decoration: none;
	color: #000;
	transition: background 0.2s;
	text-align: center;
}

.app-item:hover { background: #e0e0e0; }

.app-item i {
	font-size: clamp(1.5em, 5vw, 2.5em);
	color: #0078D4;
	margin-bottom: 8px;
}

/* Logout Button */
.logout-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 16px;
  padding: 12px;
  background-color: #df1a0c;
  color: white;
  font-size: 1.2em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.logout-btn:hover { background-color: #d32f2f; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: inline-block;
  border-radius: 0.5rem 0 0 0.5rem;
}

.breadcrumb .breadcrumb-item a { text-decoration: none; }
.breadcrumb .breadcrumb-item.ellipsis { display: none; }
.breadcrumbhome { padding: 0.2em 0.4em 0 0; }

/* Responsive Header */
@media (max-width: 500px) {
  .topnav { padding: 8px 12px; }
  .logo img.site-logo { height: 40px; }
  .dot-grid { padding: 0.5em; }
  
  .breadcrumb .breadcrumb-item:not(:first-child):not(:last-child) { display: none; }
  .breadcrumb .breadcrumb-item.ellipsis { display: inline-block; }      
}

/* Responsive Sidebar */
@media (max-width: 400px) {
  .sidebar { width: 100%; left: -100%; }
  .sidebar.show { left: 0; }
  .sidebar .app-grid { grid-template-columns: 1fr; }
}

/* Basic styling for the app-item */
.app-item {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  text-align: center;
}

/* Styling for the icon container (background image will be applied here) */
.app-icon {
  width: 3em;
  height: 3em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 8px;
}


/* Make the icon responsive */
.app-item .app-icon {
  width: 3em;   /* Default icon size */
  height: 3em;  /* Default icon size */
}


.lsb-link {
    text-decoration: none !important;
}

.infoPopup {
	cursor: pointer !important;
	font-size: 1em !important;
}

/* Responsive behavior for smaller screens */
@media (max-width: 992px) {
  .homeCardBody { padding: 1.5rem; }
  .homeCardBody h4 { font-size: 1.2rem; }
}

@media (max-width: 768px) {
	.homeCol4 { order: 2; }
	.homeCol8 { order: 1; }
	.app-item .app-icon { width: 1.5em; height: 1.5em; }
	.homeCardBody h4 { font-size: 1rem; }
	.btn.extapp-btn { font-size: 1rem; padding: 10px 15px; }
}

/* Responsive behavior for mobile screens */
@media (max-width: 480px) {	
	.app-item .app-icon { width: 1em; height: 1em; }	
	.homeCardBody { padding: 1rem; }
	.homeCardBody h4 { font-size: 1rem; }
	.btn.extapp-btn { font-size: 0.9rem; padding: 8px 12px; } 
	.divLgn { padding:0 !important; }
}

h5.welcomeMsg { text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; opacity: 0; animation: fadeIn 1.5s forwards; }

h5.welcomeMsg span {
  color: #15621e;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

h5.welcomeMsg span:hover { color: #af7705; transform: scale(1.1); animation: bounce 0.5s ease; }

.myAppsCard {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	background-color: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateY(10px);
	animation: fadeInUp 0.6s ease forwards;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.myAppsCard:hover { transform: scale(1.03); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); }
.myAppsIcon {
	width: 6em;
	height: 6em;
	display: inline-block !important; 
	margin-bottom: 1em;
	background-size: 70%;
	background-repeat: no-repeat; 
	background-position: center;
	border-radius: 50%;
	background-color: #f0f0f0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}
.myAppsIcon:hover {
  transform: scale(1.05);
  background-color: #e0e0e0;
}

.icon-row i { font-size: 24px; cursor: pointer; transition: transform 0.2s; }
.icon-row i:hover { transform: scale(1.2); }


.appItemIcon12, .myAppsIcon12 { background-image: url('/external-apps/images/bms.svg'); }
.appItemIcon27, .myAppsIcon27 { background-image: url('/external-apps/images/fn.svg'); }
.appItemIcon136, .myAppsIcon136 { background-image: url('/external-apps/images/tc1-b02557545d7c97e6c1ef1cf2de02b83c.png'); }
.myAppsPortalIcon { background-image: url('/external-apps/images/portal-fe56721a69a4ec0f8b6071577d01b4d7.png'); }

.clkbleGrdent {
  cursor: pointer;
  background: linear-gradient(90deg, #15621e, #af7705);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  transition: opacity 0.3s;
}

.clkbleGrdent:hover {
  opacity: 0.8;
}

.custom-bg {
  background-color:#15621e;
  color: #FFFFFF;       
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
	to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.modal-cstm {
	max-width: 90% !important;
	width: 90% !important;
	overflow-y: auto;
}

.modal-cstm .modal-content {
	height: 85% !important;
	max-height: 90vh !important;
}

.modal-title {
  color: white;
}

.col-6:nth-child(1) .myAppsCard { animation-delay: 0s; }
.col-6:nth-child(2) .myAppsCard { animation-delay: 0.1s; }
.col-6:nth-child(3) .myAppsCard { animation-delay: 0.2s; }
.col-6:nth-child(4) .myAppsCard { animation-delay: 0.3s; }
.col-6:nth-child(5) .myAppsCard{ animation-delay: 0.4s; }
.col-6:nth-child(6) .myAppsCard { animation-delay: 0.5s; }

.link-container a { display:inline-block; width:100%; }

#fnVwDrMaiMsgList div { padding:0.4em; border-bottom: 1px solid #eee; cursor: pointer; }
#fnVwDrMaiMsgList div:hover, #fnVwDrMaiMsgList div.selected:hover { background-color: #f0f0f0; }
#fnVwDrMaiMsgList div.selected { background-color: #d0e6ff; }

.bgWhite { background-color: #fff9e6 !important; }

#fnVwDrMaiMsgList .mailItm { display: flex; justify-content: space-between; align-items: flex-start; padding: 2px 6px; border-bottom: 1px solid #ddd; cursor: pointer; }
#fnVwDrMaiMsgList .mailItm:hover { background-color: #f0f0f0; }
#fnVwDrMaiMsgList .mailItm .mailItmLeft { display: flex; flex: 1; align-items: flex-start; overflow: hidden; }
#fnVwDrMaiMsgList .mailItm .mailItmLeft span { width: 24px; text-align: center; flex-shrink: 0; }
#fnVwDrMaiMsgList .mailItm .mailItmLeft label { margin-left: 4px; word-wrap: break-word; display: inline-block; max-width: 100%; }
#fnVwDrMaiMsgList .mailItm .mailItmDate { margin-top:2px; margin-left: 6px; font-size: 0.8em; white-space: nowrap; align-self: flex-start; flex-shrink: 0; border-bottom:none; }

.drEmailBody { border: 1px solid #ccc; height: 200px; overflow: auto; padding:0.25em; }


.animated-badge { display: inline-flex; gap: 4px; }
.animated-badge span { opacity: 0; animation: showLetter 10s infinite; }
.animated-badge span:nth-child(1) { animation-delay: 0s; }
.animated-badge span:nth-child(2) { animation-delay: 0.5s; }
.animated-badge span:nth-child(3) { animation-delay: 1s; }
.animated-badge span:nth-child(4) { animation-delay: 1.5s; }
.animated-badge span:nth-child(5) { animation-delay: 2s; }
.animated-badge span:nth-child(6) { animation-delay: 2.5s; }
.animated-badge span:nth-child(7) { animation-delay: 3s; }
.animated-badge span:nth-child(8) { animation-delay: 3.5s; }
.animated-badge span:nth-child(9) { animation-delay: 4s; }

@keyframes showLetter {
  0% { opacity: 0; transform: translateY(-10px); }
  10% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}

#drop-zone {
  border: 2px dashed #4CAF50;
  padding: 1.5em;
  text-align: center;
  color: #4CAF50;
  margin: 0.5em 0.5em 0 0.5em;
  cursor: pointer;
  user-select: none;
}

#drop-zone.dragover { background-color: #e8f5e9; }

#file-preview { margin: 1em; }
.file-item { display: flex; align-items: center; margin-bottom: 0.5em; justify-content: space-between; padding: 0.25em; border-bottom: 1px solid #ddd; }
.file-icon {font-size: 20px; margin-right: 10px; width: 25px; }
.file-info { flex-grow: 1; display: flex; align-items: center; }
.remove-btn { background-color: #f44336; border: none; color: white; padding: 4px 8px; border-radius: 3px; cursor: pointer; font-size: 12px; }
.remove-btn:hover { background-color: #d32f2f; }
#error-messages { color: red; font-family: sans-serif; margin: 10px; min-height: 1.2em; }
#error-messages div { margin-top: 4px; }

.pwd-popup {
	position: absolute;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 1rem 0.5rem;
	border-radius: 0.25rem;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	display: none;
	z-index: 1050;
	width: 375px;
	top: 100%;
	left: 0;
	margin-top: 0.25rem;
	font-size:0.85rem;
}

.fail { color: #f44336; list-style-type: none; }
.fail::before { content: "\274C "; margin-right:0.5rem; }
.pass { color: #198754; list-style-type: none; }
.pass::before { content: "\2705 "; margin-right:0.5rem; }
.indent { margin-left: 1.5rem; }
.pwdRqmntIndent2 { padding-left: 0.5rem; }

/* Fragment Alerts - Custom brand colors */
.custom-alert {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 0.25rem;
  padding: 1rem 1.25rem;
  max-width: 80vw;       /* max width 80% of viewport */
  min-width: 300px;      /* minimum width */
  white-space: normal;   /* allow wrapping */
  word-wrap: break-word; /* break long words if needed */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: inline-block;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: linear-gradient(135deg, #15621e, #af7705);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i { font-size: 24px; color: #fff; }
.scroll-top:hover { background: #af7705; color: #fff; }
.scroll-top.active { visibility: visible; opacity: 1; }

.underline-rtl {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  color: #15621e !important;
}

.underline-rtl::after {
  content: "";
  position: absolute;
  right: 0; /* Start from right */
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #af7705;  
  transition: width 0.3s ease-in-out;
}

.underline-rtl:hover { color: #af7705 !important; }
.underline-rtl:hover::after { width: 100%; }

#pageWrapper { display: flex; flex-direction: row; flex: 1; }

.sidebarLeft {
    width: 345px;
    transition: width 0.3s;
	background-color: #ffffff;
	/*position: fixed;*/
	overflow-y: auto;
	height: calc(100vh - 106px);
}

.sidebarLeft.collapsed { width: 50px; }
.sidebarLeft .nav-link {
    white-space: nowrap;
    color: #495057;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sidebarLeft .nav-link:hover, .sidebarLeft .nav-link.active { background-color: #e9ecef; color: #af7705; text-decoration: none; }
.sidebarLeft .nav-link i { font-size: 1.05rem; min-width: 24px; text-align: center; color: #6c757d; }
.sidebarLeft .nav-link.active, .sidebarLeft .nav-link.active i { color: #15621e; font-weight:bold; }
.sidebarLeft .nav-link span { display: inline-block; transition: opacity 0.3s, width 0.3s; flex-grow: 1; overflow: hidden; }
.sidebarLeft.collapsed .nav-link span { opacity: 0; width: 0; }
.sidebarLeft .nav-item.text-muted {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    color: #6c757d;
}

.sidebarLeft.collapsed .nav-item.text-muted { display: none; }

/* Toggle button */
#toggleSidebarLeft {
    width: 30px;
    height: 30px;
	padding: 0;
	font-size: 1rem;
	color: #212529;
	background-color: transparent;
	border: 1px solid #ced4da;
	border-radius: 0.2rem;
	transition: background-color 0.2s ease;
}
#toggleSidebarLeft:hover { background-color: #e9ecef; color: #0d6efd; border-color: #0d6efd; }

/* Ensure edit icon stays fully visible */
.sidebarLeft .nav-link i#editExtGaAndSession {
    flex-shrink: 0;       /* prevent shrinking */
    min-width: 24px;      /* enough space for icon */
}

/* Adjust flex behavior of nav-link when collapsed */
.sidebarLeft.collapsed .nav-link {
    justify-content: center;  /* center the remaining icons */
    padding-left: 0;          /* remove extra padding if needed */
    padding-right: 0;         /* remove extra padding if needed */
}
.main-wrapper {
    /* margin-left: 335px;*/
    flex-grow: 1;
	transition: margin-left 0.3s;
	background-color: #fff;
	min-height: calc(100vh - 56px - 50px);
	padding: 0 0.2rem 0.2rem 0.2rem;
	box-shadow: inset 0 0 10px rgb(0 0 0 / 0.1);
	border-radius: 0 0.25rem 0.25rem 0;
}
.main-wrapper.collapsed { margin-right: 5px; }

@media (max-width: 767.98px) {
    .sidebarLeft { width: 50px !important; }
	.main-wrapper { margin-left: 0px !important; }
	.main-wrapper.collapsed { margin-left: 50px !important; }
	#toggleSidebarLeft  {width:100%; }
}

tr.Immediate td{
	background-color: #ffdbdb !important;
}

tr.High td{
	background-color: #f9cfaa !important;
}

tr.Medium td{
	background-color: #feffd2 !important;
}

.upcoming-tc {
	background-color: beige;
    margin: 10px;
    border: 1px solid #bfbf00;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 10px;
}

a.more-info {
    color: #a54f4f;
    font-weight: bold;
    cursor: pointer;
}

.modalHdrBg {
  background: linear-gradient(135deg, #15621e, #af7705);
  color: white !important;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; 
}

.btn-close.bold-white {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath stroke='white' stroke-width='3' d='M2 2l12 12M14 2L2 14'/%3e%3c/svg%3e");
    background-size: 1rem;
}

.cstmCallout { border-left: 4px solid #343a40; padding: 0.25rem 1rem; margin-bottom: 1rem; background-color: #f8f9fa; border-radius: 0; }
.cstmCallout-info { border-color: #0260ed; color: #0260ed; }

.bg-cstmext {
  background: #5e6f12;
  color: #fff;
}

.view-label {
  font-size: .95rem;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
}

.view-value {
  font-size: 0.95rem;
  color: #212529;
}

.view-section {
  padding-top: 1rem;
  margin-top: 1.25rem;

}

.aebrSlct { width:25%; max-width: 320px; }
.aebrSlctMd { width:40%; max-width: 460px; }
@media (max-width: 991.98px) {	
  .aebrSlct, .aebrSlctMd { max-width: 100%; }
}

.presidingOfficer-switch:disabled {
    opacity: 0.5;      
    cursor: not-allowed;
}

.action-menu-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: transparent;
    border: none;
    transition: background-color 0.5s ease-in-out;
    cursor: pointer;
}


.action-menu-btn:hover {    
    border-radius: 50% !important;
    color: #fff !important;
    background: linear-gradient(135deg, #15621e, #af7705);
}

.action-menu-btn:active {
    border-radius: 50% !important;
    color: #fff !important;
    background: linear-gradient(135deg, #15621e, #af7705);
}

.action-menu-btn:focus {
    outline: none;
    box-shadow: none;
}

.action-menu {
    position: fixed;
    display: none;
    min-width: 150px;
    z-index: 1050;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    padding: 0.15rem 0; /* padding around items */
    transition: opacity 0.2s ease;
}

.action-menu.show { display: block; opacity: 1; }
.action-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.action-menu .dropdown-item:hover { background-color: #f1f1f1; color: #000; }
.action-menu .dropdown-item:active { background-color: #e2e2e2; }
.action-menu .dropdown-item i { margin-right: 0.5rem; }
.action-menu .dropdown-item.dynamic-item { font-weight: 500; color: #0d6efd; /* blue for department actions */ }
.action-menu .dropdown-item.dynamic-item:hover { background-color: #e7f1ff; color: #0a58ca; }
.action-menu .dropdown-item.text-danger { color: #dc3545; }
.action-menu .dropdown-item.text-danger:hover { background-color: #f8d7da; color: #b02a37; }
.action-menu .dropdown-item.text-success { color: #28a745; }
.action-menu .dropdown-item.text-success:hover { background-color: #eafaee; color: #28a745; }

.tinyText { font-size: 0.75em !important; }

.attachment-link {
  margin-left: 24px;
  margin-bottom: 8px; 
}

.bg-cstmextsave {
  background-color: #5e6f12 !important; 
  border-color: #5e6f12 !important;      
  color: #fff !important;             
}

#viewDeliveredToPdfBtn {
    background: none;          
    border: none;              
    color: #d32f2f;            /* red icon */
    padding: 0;                
    font: inherit;             
    cursor: pointer;           
    display: inline-flex;       
    align-items: center;
    justify-content: center;
    text-decoration: none;      /* remove underline for icon-only */
    transition: color 0.2s;
}

#viewDeliveredToPdfBtn:hover {
    color: #a02828;            /* darker red on hover */
}

.small-checkbox {
    font-size: 1rem;
}


#amend-ext-request-table .action-menu-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

#amend-ext-request-table .action-menu-btn:hover i,
#amend-ext-request-table .action-menu-btn.active i {
    color: #fff;
    background: linear-gradient(135deg, #15621e, #af7705);
    border-radius: 50%;
}

#amend-ext-request-table .action-menu-btn i.fa-ellipsis-vertical {
    font-size: 0.8rem;  /* small vertical dots */
}

.dropdown-menu .view-link {
    color: #0d6efd; /* blue */
}

.dropdown-menu .view-link:hover {
    background-color: #e7f1ff;
    color: #084298;
}


.dropdown-menu .pdf-link {
    color: #dc3545; /* red */
}

.dropdown-menu .pdf-link:hover {
    background-color: #f8d7da;
    color: #842029;
}

#submissionNotes[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;      
    color: #495057;
}
