/* ============================================================
   SRDH Public Site – Shared Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --s-primary:     #2B5BA8;
  --s-primary-dark:#1A2F5A;
  --s-teal:        #29B8B0;
  --s-dark:        #1A2F5A;
  --s-text:        #374151;
  --s-muted:       #6b7280;
  --s-light:       #EEF4FF;
  --s-white:       #ffffff;
  --s-shadow:      0 4px 28px rgba(43,91,168,0.12);
  --s-radius:      14px;
}

body, #content, #content * {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Prevent horizontal overflow site-wide */
body { overflow-x: hidden; }
#content { overflow-x: hidden; max-width: 100vw; }

/* ===== NAVBAR BOOK APPOINTMENT BUTTON ===== */
.srdh-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #2B5BA8;
  color: white !important;
  text-decoration: none !important;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 14px rgba(43,91,168,0.38);
  white-space: nowrap;
}
.srdh-nav-btn:hover {
  background: #1A2F5A;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(43,91,168,0.5);
}

/* ===== PAGE HEADER ===== */
.srdh-page-header {
  background: linear-gradient(135deg, #1A2F5A 0%, #2B5BA8 60%, #29B8B0 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.srdh-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.srdh-page-header h1 {
  color: white !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
.srdh-page-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin: 0;
  position: relative;
}
.srdh-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.srdh-breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.srdh-breadcrumb a:hover { color: white; }
.srdh-breadcrumb span { color: white; font-weight: 500; }

/* ===== SECTION LAYOUT ===== */
.srdh-section      { padding: 88px 0; }
.srdh-section-light { background: var(--s-light); }
.srdh-section-white { background: white; }
.srdh-section-dark  { background: var(--s-dark); }

/* ===== TYPOGRAPHY ===== */
.srdh-label {
  display: block;
  color: var(--s-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
.srdh-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--s-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.srdh-sub {
  color: var(--s-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.srdh-btn {
  display: inline-block;
  background: var(--s-primary);
  border: 2px solid var(--s-primary);
  color: white !important;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: all 0.25s;
  cursor: pointer;
}
.srdh-btn:hover {
  background: var(--s-primary-dark);
  border-color: var(--s-primary-dark);
  transform: translateY(-2px);
}
.srdh-btn-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--s-primary);
  color: var(--s-primary) !important;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: all 0.25s;
}
.srdh-btn-outline:hover {
  background: var(--s-primary);
  color: white !important;
}
.srdh-btn-white {
  display: inline-block;
  background: white;
  border: 2px solid white;
  color: var(--s-primary) !important;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: all 0.25s;
}
.srdh-btn-white:hover {
  background: transparent;
  color: white !important;
}
.srdh-btn-lg { padding: 14px 40px; font-size: 1rem; }

/* ===== CARDS ===== */
.srdh-card {
  background: white;
  border-radius: var(--s-radius);
  box-shadow: var(--s-shadow);
  border: 1px solid rgba(43,91,168,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}
.srdh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(43,91,168,0.16);
}

/* ===== SERVICE CARD ===== */
.srdh-service-card {
  background: white;
  border-radius: var(--s-radius);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--s-shadow);
  border: 1px solid rgba(43,91,168,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.srdh-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(43,91,168,0.18);
}
.srdh-icon-circle {
  width: 68px; height: 68px;
  background: rgba(43,91,168,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.srdh-icon-circle i { color: var(--s-primary); font-size: 1.3rem; }
.srdh-service-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 10px; color: var(--s-dark); }
.srdh-service-card p  { color: var(--s-muted); font-size: 0.85rem; line-height: 1.65; margin-bottom: 18px; }

/* ===== DOCTOR CARD ===== */
.srdh-doctor-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(43,91,168,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}
.srdh-doctor-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(43,91,168,0.18); }
.srdh-doctor-card img  { width: 100%; height: 300px; object-fit: cover; object-position: top center; display: block; }
.srdh-doctor-ph        { width: 100%; height: 300px; background: linear-gradient(135deg,#dce8ff,#c7d9ff); display: flex; align-items: center; justify-content: center; }
.srdh-doctor-body      { padding: 20px 18px; text-align: center; border-top: 3px solid var(--s-primary); }
.srdh-doctor-body h5   { font-weight: 700; font-size: 1rem; margin-bottom: 4px; color: #1a2340; }
.srdh-doctor-body span { color: var(--s-primary); font-size: 0.83rem; font-weight: 600; display: block; }
.srdh-doctor-body p    { color: var(--s-muted); font-size: 0.78rem; line-height: 1.6; margin: 6px 0 0; }

/* ===== TESTIMONIAL CARD ===== */
.srdh-testi-card {
  background: white;
  border-radius: var(--s-radius);
  padding: 32px;
  box-shadow: var(--s-shadow);
  border: 1px solid rgba(43,91,168,0.06);
  height: 100%;
}
.srdh-testi-card .qt   { color: var(--s-primary); font-size: 2.5rem; line-height: 1; font-family: Georgia, serif; margin-bottom: 14px; }
.srdh-testi-card p     { color: var(--s-text); line-height: 1.78; font-size: 0.92rem; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.srdh-stars i          { color: #f59e0b; font-size: 0.88rem; }

/* ===== AVATAR ===== */
.srdh-avatar {
  width: 48px; height: 48px;
  background: var(--s-primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.srdh-avatar-name strong { display: block; font-weight: 600; font-size: 0.9rem; }
.srdh-avatar-name small  { color: var(--s-muted); font-size: 0.78rem; }

/* ===== CHECK ITEMS ===== */
.srdh-check-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: var(--s-text); margin-bottom: 10px; }
.srdh-check-item i { color: var(--s-primary); font-size: 1rem; flex-shrink: 0; }

/* ===== INFO ITEM ===== */
.srdh-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.srdh-info-icon { width: 46px; height: 46px; flex-shrink: 0; background: rgba(43,91,168,0.10); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.srdh-info-icon i { color: var(--s-primary); }
.srdh-info-item strong { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 3px; color: var(--s-dark); }
.srdh-info-item p  { color: var(--s-muted); font-size: 0.84rem; margin: 0; line-height: 1.6; }
.srdh-info-item a  { color: var(--s-muted); text-decoration: none; }
.srdh-info-item a:hover { color: var(--s-primary); }

/* ===== CTA BANNER ===== */
.srdh-cta {
  background: linear-gradient(135deg, #1A2F5A 0%, #2B5BA8 55%, #29B8B0 100%);
  padding: 72px 0;
}
.srdh-cta h2 { color: white !important; font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.srdh-cta p  { color: rgba(255,255,255,0.8); margin: 0; }

/* ===== FAQ ===== */
.srdh-faq .accordion-item  { border: none; border-radius: var(--s-radius) !important; overflow: hidden; margin-bottom: 12px; box-shadow: var(--s-shadow); }
.srdh-faq .accordion-button { font-weight: 600; font-size: 0.92rem; color: var(--s-dark); background: white; padding: 20px 24px; }
.srdh-faq .accordion-button:not(.collapsed) { color: var(--s-primary); background: rgba(43,91,168,0.04); box-shadow: none; }
.srdh-faq .accordion-body   { color: var(--s-muted); font-size: 0.88rem; line-height: 1.78; padding: 0 24px 22px; background: white; }

/* ===== FORM CONTROLS ===== */
.srdh-form .form-control,
.srdh-form .form-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
}
.srdh-form .form-control:focus,
.srdh-form .form-select:focus {
  border-color: var(--s-primary);
  box-shadow: 0 0 0 3px rgba(43,91,168,0.12);
}

/* ===== GALLERY ===== */
.srdh-gallery-item {
  border-radius: var(--s-radius);
  overflow: hidden;
  box-shadow: var(--s-shadow);
  position: relative;
}
.srdh-gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; }
.srdh-gallery-item:hover img { transform: scale(1.06); }
.srdh-gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(43,91,168,0.5);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.srdh-gallery-item:hover .overlay { opacity: 1; }
.srdh-gallery-item .overlay i { color: white; font-size: 2rem; }

/* ===== BLOG CARD ===== */
.srdh-blog-card {
  background: white;
  border-radius: var(--s-radius);
  overflow: hidden;
  box-shadow: var(--s-shadow);
  border: 1px solid rgba(43,91,168,0.06);
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.srdh-blog-card:hover { transform: translateY(-5px); }
.srdh-blog-card img { width: 100%; height: 200px; object-fit: cover; flex-shrink: 0; }
.srdh-blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; min-width: 0; overflow: hidden; }
.srdh-blog-body .cat { color: var(--s-primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.srdh-blog-body h5 {
  font-weight: 700; font-size: 1rem; margin-bottom: 10px; color: var(--s-dark); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.srdh-blog-body h5 a { color: inherit; text-decoration: none; }
.srdh-blog-body p  {
  color: var(--s-muted); font-size: 0.85rem; line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.srdh-blog-meta { font-size: 0.78rem; color: var(--s-muted); }
.srdh-blog-meta i { margin-right: 4px; }

/* ===== CONTENT OVERFLOW PROTECTION ===== */
.srdh-rendered-content {
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  max-width: 100%;
}
.srdh-rendered-content img { max-width: 100%; height: auto; border-radius: 8px; }
.srdh-rendered-content table { max-width: 100%; }
.srdh-rendered-content pre, .srdh-rendered-content code { overflow-x: auto; max-width: 100%; }

/* ===== IMAGE GRID (2-up with offset) ===== */
.hp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hp-about-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--s-shadow);
}
.hp-about-grid img:first-child { height: 270px; }
.hp-about-grid img:last-child  { height: 210px; margin-top: 50px; }

/* ===== MAP ===== */
.srdh-map-frame { border-radius: var(--s-radius); overflow: hidden; box-shadow: var(--s-shadow); }
.srdh-map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ===== SRDH BRAND NAVBAR OVERRIDE ===== */
header,
header.transparent,
header.transparent.scroll-light {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 20px rgba(26,47,90,0.10) !important;
  border-bottom: 1px solid rgba(43,91,168,0.08) !important;
  /* Keep template's position: fixed behavior — do NOT override position */
}
/* Show colored SRDH logo always — hide white (dentia) logo */
header .logo-main  { display: none !important; }
header .logo-scroll { display: block !important; opacity: 1 !important; visibility: visible !important; }
/* Mobile: also force mobile logo visible */
header .logo-mobile { display: none !important; }
@media (max-width: 768px) {
  header .logo-scroll { display: none !important; }
  header .logo-mobile { display: block !important; opacity: 1 !important; visibility: visible !important; }
}

header #mainmenu > li > a,
header ul#mainmenu > li > a.menu-item {
  color: #1A2F5A !important;
}
header #mainmenu > li > a:hover,
header ul#mainmenu > li > a.menu-item:hover {
  color: #2B5BA8 !important;
}
.btn.btn-main {
  background: #2B5BA8 !important;
  border-color: #2B5BA8 !important;
}
.btn.btn-main:hover {
  background: #1A2F5A !important;
  border-color: #1A2F5A !important;
}
/* Remove template's 90px top/bottom padding on #content — sections handle their own padding */
#content { padding: 0 !important; }

/* ===== FOOTER MOBILE ===== */
footer { padding: 60px 0 0; }
footer .widget h5 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: rgba(255,255,255,0.9); }
footer .widget ul { list-style: none; padding: 0; margin: 0; }
footer .widget ul li { margin-bottom: 8px; }
footer .widget ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
footer .widget ul li a:hover { color: white; }
footer .widget address { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.8; }
footer .widget address a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer .widget address a:hover { color: white; }
footer .widget p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.8; }
footer .de-sub-footer { margin-top: 40px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .srdh-section { padding: 64px 0; }
  .srdh-page-header { padding: 110px 0 48px; }
  .srdh-cta { padding: 56px 0; }
  .srdh-cta h2 { font-size: 1.7rem; }
}
@media (max-width: 767px) {
  .srdh-section { padding: 50px 0; }
  .srdh-page-header { padding: 100px 0 38px; }
  .srdh-page-header h1 { font-size: 1.8rem; }
  .srdh-heading { font-size: 1.6rem; }
  .srdh-cta { padding: 44px 0; text-align: center; }
  .srdh-cta .text-lg-end { text-align: center !important; margin-top: 18px; }
  .srdh-card { padding: 20px !important; }
  .srdh-doctor-card img, .srdh-doctor-ph { height: 240px; }
}
/* ===== GET IN TOUCH GLOBAL SECTION ===== */
.srdh-contact-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(43,91,168,0.10);
}
.srdh-contact-card .form-control,
.srdh-contact-card .form-select {
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  padding: 12px 16px;
  font-size: 0.93rem;
  transition: border-color 0.2s;
}
.srdh-contact-card .form-control:focus {
  border-color: var(--s-primary);
  box-shadow: 0 0 0 3px rgba(43,91,168,0.10);
}
@media (max-width:767px) { .srdh-contact-card { padding: 24px 18px; } }

/* Restore FA icon font globally — prevents Poppins/other resets from overriding icon glyphs */
i.fa,
i[class^="fa-"],
i[class*=" fa-"] {
  font-family: 'FontAwesome' !important;
  font-style: normal;
}

/* ===== LOGO SIZE ===== */
div#logo img { max-width: 220px !important; }
header .logo-scroll { height: 64px !important; }
header .logo-mobile { height: 54px !important; }
header .logo-main { height: 64px; }

/* ===== HAMBURGER ANIMATION ===== */
#menu-btn {
  transition: color 0.2s;
  font-size: 22px !important;
}
#menu-btn:before {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#menu-btn.menu-open:before {
  content: "\f00d" !important;   /* × close icon */
  transform: rotate(90deg);
  color: #111 !important;
}

/* Mobile nav — submenu toggle span: positioned right, icon via ::after */
header.header-mobile #mainmenu > li > span {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}
header.header-mobile #mainmenu > li > span::after {
  font-family: 'FontAwesome' !important;
  content: "\f107" !important;
  color: #111 !important;
  font-size: 18px !important;
  display: block !important;
}

/* Mobile nav — hide the extra ::after arrow (span already handles toggle) */
header.header-mobile #mainmenu > li.has-child:after,
header.header-mobile #mainmenu > li.menu-item-has-children:after { display: none !important; }
header.header-mobile #mainmenu > li.menu-item-has-children > a.menu-item:after { display: none !important; }

/* Ensure li is positioned relative so span can be absolute */
header.header-mobile #mainmenu > li { position: relative !important; }

/* ===== STICKY HEADER — always fixed, never hides on scroll ===== */
header,
header.transparent {
  position: fixed !important;
  top: 0 !important;
  margin-top: 0 !important;
}

/* Block template's scroll-hide behavior */
header.scroll-down,
.scroll-down header {
  margin-top: 0 !important;
  top: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Prevent nav padding shrink on scroll */
header.smaller #mainmenu > li > a {
  padding: var(--mainmenu-item-padding) !important;
}

/* Dropdown arrow — always visible, dark color always (not white-on-white) */
#mainmenu > li.has-child:after,
header #mainmenu > li.has-child:after,
header.smaller #mainmenu > li.has-child:after,
.header-light #mainmenu > li.has-child:after {
  font-family: 'FontAwesome' !important;
  content: "\f078" !important;
  display: inline-block !important;
  opacity: 1 !important;
  color: #1A2F5A !important;
}

/* ===== MOBILE HEADER OVERRIDES ===== */
@media (max-width: 992px) {
  /* Hide Book Appointment button on mobile — only show hamburger + logo */
  .menu_side_area .srdh-nav-btn { display: none !important; }

  /* Hamburger icon → black */
  #menu-btn { color: #111 !important; }

  /* Mobile nav text → black */
  header.header-mobile #mainmenu a.menu-item,
  header.header-mobile #mainmenu li ul a.menu-item,
  header.header-mobile #mainmenu li a { color: #111 !important; }

  /* Mobile nav dividers → light grey */
  header.header-mobile #mainmenu li { border-bottom-color: rgba(0,0,0,.1) !important; }
}

@media (max-width: 575px) {
  .srdh-section { padding: 40px 0; }
  .srdh-page-header { padding: 90px 0 32px; }
  .srdh-page-header h1 { font-size: 1.5rem; }
  .srdh-heading { font-size: 1.4rem; }
  .srdh-btn, .srdh-btn-outline { padding: 10px 22px; font-size: 0.87rem; }
  .srdh-btn-lg, .srdh-btn-outline.srdh-btn-lg { padding: 12px 28px; font-size: 0.92rem; }
  .srdh-info-item { gap: 12px; }
  .srdh-gallery-item img { height: 180px; }
  .srdh-blog-card img { height: 170px; }
  .srdh-testi-card { padding: 22px 18px; }
  footer { padding: 44px 0 0; }
  footer .col-lg-4, footer .col-lg-2, footer .col-lg-3 { margin-bottom: 30px; }
  footer .de-sub-footer .text-end { text-align: left !important; margin-top: 8px; }
  footer .de-sub-footer .col-md-6 { font-size: 0.8rem; }
  .hp-about-grid { grid-template-columns: 1fr; }
  .hp-about-grid img:first-child { height: 220px; }
  .hp-about-grid img:last-child  { height: 180px; margin-top: 0; }
  /* Doctor card buttons – full width on tiny screens */
  .srdh-doctor-body .d-flex.gap-2 { flex-direction: column; }
  .srdh-doctor-body .d-flex.gap-2 a { text-align: center; width: 100%; }
  /* Contact form container */
  .srdh-contact-inner { padding: 24px 18px !important; }
  /* Confirmation page action buttons */
  .srdh-confirm-actions { flex-direction: column; }
  .srdh-confirm-actions a { text-align: center; }
}
