:root{
  --green:#063b34;
  --green2:#0b6b5e;
  --gold:#d8c487;
  --bg:#eef4f0;
  --card:#fff;
  --text:#073b35;
  --muted:#667085;
  --red:#c1121f;
  --soft:#f6faf8;
  --line:rgba(6,59,52,.10);
  --shadow:0 14px 34px rgba(0,37,31,.10);
  --radius:24px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Cairo,Tahoma,Arial,sans-serif;
  background:
    radial-gradient(circle at top right,rgba(216,196,135,.20),transparent 34%),
    linear-gradient(180deg,#f8faf8,#eef4f0);
  color:var(--text);
  padding-bottom:96px;
}

.section-app{
  width:min(900px,100%);
  margin:0 auto;
  padding:14px;
}

.section-header{
  background:linear-gradient(145deg,#063b34,#0b6b5e);
  color:#fff7dc;
  border-radius:30px;
  padding:16px;
  box-shadow:var(--shadow);
  border:1px solid rgba(216,196,135,.35);
}

.back-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--green);
  background:var(--gold);
  font-weight:900;
  border-radius:14px;
  padding:9px 12px;
  margin-bottom:14px;
}

.section-title-wrap{
  display:flex;
  gap:12px;
  align-items:center;
}

.section-icon{
  width:64px;
  height:64px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(216,196,135,.4);
  font-size:32px;
  flex:0 0 auto;
}

.section-header h1{
  margin:0;
  font-size:28px;
  font-weight:900;
}

.section-header p{
  margin:5px 0 0;
  color:#efe3bf;
  font-weight:800;
}

.refresh-btn{
  margin-top:14px;
  border:1px solid rgba(216,196,135,.35);
  background:rgba(255,255,255,.13);
  color:#fff7dc;
  font-family:inherit;
  font-weight:900;
  border-radius:15px;
  padding:10px 13px;
  cursor:pointer;
}

.section-stats{
  margin-top:13px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.section-stats div{
  background:var(--card);
  border-radius:20px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:14px;
  text-align:center;
}

.section-stats b{
  display:block;
  font-size:26px;
  color:var(--green2);
  line-height:1;
}

.section-stats span{
  display:block;
  margin-top:7px;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
}

.section-search{
  margin-top:13px;
  background:var(--card);
  border-radius:20px;
  padding:12px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.section-search input{
  width:100%;
  border:1px solid rgba(6,59,52,.12);
  background:var(--soft);
  border-radius:16px;
  padding:13px;
  font-family:inherit;
  font-weight:800;
  outline:none;
}

.filter-note{
  margin-top:12px;
  background:#fff8df;
  color:#6b4e00;
  border:1px solid rgba(216,196,135,.45);
  border-radius:18px;
  padding:11px;
  font-weight:900;
  font-size:13px;
}

.hidden{
  display:none !important;
}

.news-list{
  display:grid;
  gap:12px;
  margin-top:13px;
}

.loading-card,
.empty-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  text-align:center;
  color:var(--muted);
  font-weight:900;
  box-shadow:var(--shadow);
}

.news-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  cursor:pointer;
  position:relative;
}

.news-card.unread:before{
  content:"جديد";
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  background:linear-gradient(135deg,#e10000,#870000);
  color:#fff;
  border-radius:999px;
  padding:4px 9px;
  font-size:11px;
  font-weight:900;
  box-shadow:0 0 16px rgba(255,0,0,.25);
}

.news-card.read{
  opacity:.92;
}

.news-image{
  width:100%;
  max-height:310px;
  object-fit:cover;
  display:block;
  background:#e8efeb;
}

.news-body{
  padding:14px;
}

.news-meta{
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.news-card h2{
  margin:8px 0 6px;
  font-size:19px;
  font-weight:900;
  color:var(--text);
  line-height:1.55;
}

.news-card p{
  margin:0;
  color:#334155;
  line-height:1.85;
  font-weight:700;
}

.reader-modal{
  position:fixed;
  inset:0;
  z-index:200;
  display:grid;
  place-items:center;
  padding:14px;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.reader-card{
  position:relative;
  width:min(680px,100%);
  max-height:90vh;
  overflow:auto;
  background:#fff;
  border-radius:28px;
  box-shadow:0 24px 70px rgba(0,0,0,.30);
}

.modal-close{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:25px;
  cursor:pointer;
}

.reader-image{
  width:100%;
  max-height:360px;
  object-fit:cover;
  display:block;
}

.reader-body{
  padding:17px;
}

.reader-meta{
  color:var(--muted);
  font-size:12px;
  font-weight:900;
}

.reader-body h2{
  margin:9px 0;
  font-size:24px;
  line-height:1.55;
  color:var(--green);
}

.reader-body p{
  margin:0;
  line-height:2;
  color:#263645;
  font-weight:700;
  white-space:pre-wrap;
}

.death-action-wrap{
  margin-top:14px;
}

.death-action-wrap button{
  width:100%;
  border:0;
  border-radius:18px;
  padding:13px;
  background:linear-gradient(135deg,#063b34,#0b6b5e);
  color:#fff7dc;
  font-family:inherit;
  font-weight:900;
  cursor:pointer;
}

.reader-actions{
  margin-top:15px;
  display:flex;
  gap:9px;
  flex-wrap:wrap;
}

.reader-actions button{
  border:0;
  border-radius:16px;
  padding:11px 14px;
  background:var(--gold);
  color:var(--green);
  font-family:inherit;
  font-weight:900;
  cursor:pointer;
}

.reader-actions button:last-child{
  background:#eef4f0;
}

.bottom-nav{
  position:fixed;
  bottom:0;
  right:0;
  left:0;
  height:74px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-top:1px solid rgba(6,59,52,.10);
  display:grid;
  grid-template-columns:repeat(5,1fr);
  z-index:60;
  box-shadow:0 -8px 22px rgba(0,37,31,.06);
}

.bottom-nav a{
  display:grid;
  place-items:center;
  align-content:center;
  gap:3px;
  color:var(--green);
  text-decoration:none;
  font-weight:900;
  font-size:19px;
}

.bottom-nav span{
  font-size:10px;
}

.bottom-nav .active{
  color:var(--green2);
}

.toast{
  position:fixed;
  right:14px;
  left:14px;
  bottom:90px;
  z-index:300;
  background:var(--green);
  color:#fff7dc;
  border-radius:17px;
  padding:12px;
  text-align:center;
  font-weight:900;
  transform:translateY(20px);
  opacity:0;
  pointer-events:none;
  transition:.2s;
}

.toast.show{
  transform:translateY(0);
  opacity:1;
}

@media(min-width:720px){
  .news-list{
    grid-template-columns:1fr 1fr;
  }

  .news-card:first-child{
    grid-column:1/-1;
  }
}

@media(max-width:430px){
  .section-app{
    padding:12px;
  }

  .section-header{
    border-radius:26px;
  }

  .section-header h1{
    font-size:24px;
  }

  .section-icon{
    width:58px;
    height:58px;
    font-size:29px;
  }
}

/* ===== Section V3 Reader Links as Buttons ===== */
.reader-links{
  margin-top:14px;
  display:grid;
  gap:9px;
}

.reader-link-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  border-radius:18px;
  padding:13px 14px;
  background:linear-gradient(135deg,#063b34,#0b6b5e);
  color:#fff7dc;
  font-weight:900;
  box-shadow:0 10px 24px rgba(0,37,31,.16);
}

.reader-link-btn span{
  font-size:19px;
}

.reader-link-btn b{
  font-size:14px;
}

.reader-link-btn:hover,
.reader-link-btn:active{
  filter:brightness(1.04);
  transform:translateY(-1px);
}

/* ===== Section V3 Better Image Display ===== */

/* الصور العادية للأخبار تبقى مرتبة */
.news-image{
  background:#ffffff;
}

/* قسم الإعلانات: البوسترات تظهر كاملة بدون قص */
body[data-section="ads"] .news-list{
  grid-template-columns:1fr !important;
}

body[data-section="ads"] .news-card{
  max-width:720px;
  width:100%;
  margin-inline:auto;
}

body[data-section="ads"] .news-image{
  width:100%;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  background:#ffffff;
  border-bottom:1px solid rgba(6,59,52,.08);
}

/* حتى في الشاشات الكبيرة لا نقسم الإعلانات عمودين */
@media(min-width:720px){
  body[data-section="ads"] .news-card:first-child{
    grid-column:auto !important;
  }
}

/* قسم المعرض أيضًا الأفضل أن تظهر الصور كاملة */
body[data-section="gallery"] .news-list{
  grid-template-columns:1fr !important;
}

body[data-section="gallery"] .news-card{
  max-width:720px;
  width:100%;
  margin-inline:auto;
}

body[data-section="gallery"] .news-image{
  width:100%;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  background:#ffffff;
}

/* داخل نافذة قراءة الخبر: الصورة كاملة وليست مقصوصة */
.reader-image{
  object-fit:contain !important;
  background:#ffffff;
  max-height:72vh !important;
}

/* تحسين بطاقة الإعلان */
body[data-section="ads"] .news-body{
  padding:16px;
}

body[data-section="ads"] .news-card h2{
  font-size:21px;
  color:#063b34;
}

body[data-section="ads"] .news-card p{
  font-size:15px;
  color:#344054;
}

/* على الهاتف: البوستر يأخذ العرض كامل */
@media(max-width:430px){
  body[data-section="ads"] .news-card,
  body[data-section="gallery"] .news-card{
    max-width:100%;
  }

  body[data-section="ads"] .news-body,
  body[data-section="gallery"] .news-body{
    padding:13px;
  }
}

/* ===== Official News V3 Polish ===== */
body[data-section="official"] .news-list{
  grid-template-columns:1fr !important;
  max-width:860px;
  margin-inline:auto;
}

body[data-section="official"] .news-card{
  position:relative;
  border-radius:24px;
  border:1px solid rgba(6,59,52,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,251,250,.96));
  box-shadow:0 14px 36px rgba(0,35,30,.08);
  overflow:hidden;
}

body[data-section="official"] .news-card:before{
  content:"رسمي";
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  background:#063b34;
  color:#d8c487;
  border-radius:999px;
  padding:6px 10px;
  font-size:11px;
  font-weight:900;
  box-shadow:0 8px 20px rgba(6,59,52,.18);
}

body[data-section="official"] .news-card .news-title,
body[data-section="official"] .news-card h3,
body[data-section="official"] .news-card b{
  color:#063b34;
  font-weight:900;
  line-height:1.65;
}

body[data-section="official"] .news-card .meta,
body[data-section="official"] .news-card small{
  color:#667085;
}

body[data-section="official"] .filter-note{
  background:#fff7df;
  color:#745b15;
  border:1px solid rgba(216,196,135,.55);
  border-radius:16px;
  padding:10px 12px;
  font-weight:800;
}

body[data-section="official"] .section-head{
  background:
    radial-gradient(circle at 15% 20%, rgba(216,196,135,.22), transparent 32%),
    linear-gradient(145deg,#063b34,#0b5b50);
  color:white;
}

body[data-section="official"] .section-head p,
body[data-section="official"] .section-head small{
  color:#e8f3ef !important;
}

@media(max-width:520px){
  body[data-section="official"] .news-card{
    border-radius:20px;
  }

  body[data-section="official"] .news-card:before{
    top:10px;
    left:10px;
    font-size:10px;
  }
}

/* ===== Official Section Visibility Fix ===== */
body[data-section="official"] .news-list{
  display:grid !important;
  visibility:visible !important;
  opacity:1 !important;
  grid-template-columns:1fr !important;
  max-width:860px;
  margin-inline:auto;
}

body[data-section="official"] .news-card{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}

body[data-section="official"] .empty,
body[data-section="official"] .section-empty,
body[data-section="official"] .news-empty{
  display:block;
}

/* ===== Official News Final Card Polish ===== */
body[data-section="official"] .news-list{
  grid-template-columns:1fr !important;
  max-width:880px;
  margin-inline:auto;
}

body[data-section="official"] .news-card{
  min-height:124px;
  border-radius:24px;
  border:1px solid rgba(6,59,52,.10);
  background:linear-gradient(135deg,#ffffff,#f8fbfa);
  box-shadow:0 14px 34px rgba(0,35,30,.08);
  position:relative;
  padding:18px 18px 16px !important;
}

body[data-section="official"] .news-card:after{
  content:"فتح التفاصيل";
  position:absolute;
  bottom:14px;
  left:16px;
  background:#063b34;
  color:#d8c487;
  border-radius:999px;
  padding:7px 12px;
  font-size:11px;
  font-weight:900;
}

body[data-section="official"] .news-card:before{
  content:"مصدر رسمي";
  position:absolute;
  top:14px;
  left:16px;
  background:#eef7f4;
  color:#063b34;
  border:1px solid rgba(6,59,52,.10);
  border-radius:999px;
  padding:6px 10px;
  font-size:11px;
  font-weight:900;
}

body[data-section="official"] .news-card h3,
body[data-section="official"] .news-card .news-title,
body[data-section="official"] .news-card b{
  color:#063b34 !important;
  font-size:17px;
  line-height:1.75;
  font-weight:900;
  padding-left:100px;
}

body[data-section="official"] .news-card small,
body[data-section="official"] .news-card .meta{
  color:#667085 !important;
  font-weight:800;
}

@media(max-width:520px){
  body[data-section="official"] .news-card{
    border-radius:20px;
    padding:16px !important;
  }

  body[data-section="official"] .news-card h3,
  body[data-section="official"] .news-card .news-title,
  body[data-section="official"] .news-card b{
    padding-left:0;
    padding-top:30px;
    font-size:15px;
  }

  body[data-section="official"] .news-card:after{
    position:static;
    display:inline-flex;
    margin-top:12px;
  }
}

/* ===== Deaths Condolence Button V3 ===== */
.death-card-v3{
  position:relative !important;
  border-color:rgba(6,59,52,.12) !important;
}

.death-condolence-wrap-v3{
  margin-top:14px;
  display:flex;
  justify-content:center;
}

.death-condolence-btn-v3{
  width:100%;
  border:0;
  border-radius:18px;
  padding:13px 14px;
  background:linear-gradient(145deg,#063b34,#0b5b50);
  color:#d8c487;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(6,59,52,.16);
  font-family:Tahoma,Arial,sans-serif;
}

.death-condolence-btn-v3.done{
  background:linear-gradient(145deg,#eef7f4,#ffffff);
  color:#063b34;
  border:1px solid rgba(6,59,52,.12);
  box-shadow:none;
}

.death-condolence-toast-v3{
  position:fixed;
  left:50%;
  bottom:82px;
  transform:translateX(-50%) translateY(20px);
  background:#063b34;
  color:#d8c487;
  border:1px solid rgba(216,196,135,.55);
  border-radius:999px;
  padding:13px 18px;
  font-weight:900;
  font-family:Tahoma,Arial,sans-serif;
  box-shadow:0 18px 44px rgba(0,35,30,.24);
  z-index:999999;
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  text-align:center;
  max-width:calc(100vw - 30px);
}

.death-condolence-toast-v3.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* ===== Deaths Page Polish V3 ===== */
.deaths-page-v3{
  background:
    radial-gradient(circle at top right, rgba(216,196,135,.16), transparent 35%),
    linear-gradient(180deg,#f7faf8,#eef5f1) !important;
}

.deaths-section-title-v3{
  color:#063b34 !important;
  letter-spacing:-.3px;
}

.deaths-header-note-v3{
  margin-top:8px;
  display:inline-flex;
  background:#fff7df;
  color:#745b15;
  border:1px solid rgba(216,196,135,.45);
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:900;
  line-height:1.5;
}

.death-polished-card-v3{
  position:relative !important;
  background:
    radial-gradient(circle at 95% 8%, rgba(216,196,135,.18), transparent 32%),
    linear-gradient(145deg,#ffffff,#fbfdfb) !important;
  border:1px solid rgba(216,196,135,.42) !important;
  border-radius:26px !important;
  box-shadow:0 16px 42px rgba(0,35,30,.08) !important;
  overflow:hidden !important;
}

.death-polished-card-v3:before{
  content:"";
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:5px;
  background:linear-gradient(180deg,#063b34,#d8c487);
  border-radius:0 26px 26px 0;
}

.death-fixed-dua-v3{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  padding:12px 13px;
  background:#f7fbf9;
  border:1px solid rgba(6,59,52,.10);
  border-radius:20px;
  color:#063b34;
}

.death-dua-icon-v3{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#fff7df;
  border:1px solid rgba(216,196,135,.45);
  font-size:22px;
  flex:0 0 auto;
}

.death-fixed-dua-v3 b{
  display:block;
  font-size:15px;
  font-weight:900;
  margin-bottom:4px;
}

.death-fixed-dua-v3 small{
  display:block;
  color:#667085;
  font-weight:800;
  line-height:1.7;
}

.death-respect-line-v3{
  margin-top:12px;
  margin-bottom:12px;
  padding:10px 12px;
  border-radius:18px;
  background:#fffdf5;
  border:1px dashed rgba(216,196,135,.55);
  color:#745b15;
  font-size:13px;
  font-weight:900;
  line-height:1.8;
  text-align:center;
}

.death-condolence-wrap-v3{
  margin-top:14px !important;
}

.death-condolence-btn-v3{
  border-radius:18px !important;
  background:linear-gradient(145deg,#063b34,#0b5b50) !important;
  color:#d8c487 !important;
  border:1px solid rgba(216,196,135,.30) !important;
  min-height:48px;
}

.death-condolence-btn-v3.done{
  background:#eef7f4 !important;
  color:#063b34 !important;
  border:1px solid rgba(6,59,52,.12) !important;
}

@media(max-width:520px){
  .death-fixed-dua-v3{
    align-items:flex-start;
    border-radius:18px;
  }

  .death-dua-icon-v3{
    width:38px;
    height:38px;
    border-radius:14px;
    font-size:20px;
  }
}

/* ===== Ads Cards Polish V3 ===== */
.ads-page-v3{
  background:
    radial-gradient(circle at top right, rgba(216,196,135,.16), transparent 35%),
    linear-gradient(180deg,#f7faf8,#eef5f1) !important;
}

.ads-section-title-v3{
  color:#063b34 !important;
}

.ads-header-note-v3{
  margin-top:8px;
  display:inline-flex;
  background:#eef7f4;
  color:#063b34;
  border:1px solid rgba(6,59,52,.12);
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:900;
  line-height:1.5;
}

.ad-polished-card-v3{
  position:relative !important;
  background:
    radial-gradient(circle at 95% 8%, rgba(216,196,135,.18), transparent 32%),
    linear-gradient(145deg,#ffffff,#fbfdfb) !important;
  border:1px solid rgba(6,59,52,.10) !important;
  border-radius:26px !important;
  box-shadow:0 16px 42px rgba(0,35,30,.08) !important;
  overflow:hidden !important;
}

.ad-polished-card-v3:before{
  content:"";
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:5px;
  background:linear-gradient(180deg,#063b34,#d8c487);
  border-radius:0 26px 26px 0;
}

.ad-badge-v3{
  position:absolute;
  top:12px;
  left:12px;
  z-index:30;
  display:inline-flex;
  background:linear-gradient(145deg,#063b34,#0b5b50);
  color:#d8c487;
  border:1px solid rgba(216,196,135,.45);
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(6,59,52,.18);
}

.ad-actions-v3{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:14px;
}

.ad-action-btn-v3{
  text-decoration:none;
  border-radius:16px;
  padding:12px 13px;
  font-weight:900;
  text-align:center;
  font-size:14px;
  border:1px solid rgba(6,59,52,.10);
}

.ad-action-btn-v3.call{
  background:#eef7f4;
  color:#063b34;
}

.ad-action-btn-v3.whatsapp{
  background:linear-gradient(145deg,#063b34,#0b5b50);
  color:#d8c487;
  border-color:rgba(216,196,135,.35);
}

.ad-no-phone-v3{
  grid-column:1/-1;
  background:#fff7df;
  color:#745b15;
  border:1px dashed rgba(216,196,135,.55);
  border-radius:16px;
  padding:10px 12px;
  text-align:center;
  font-size:12px;
  font-weight:900;
}

.ad-link-v3{
  color:#0b5b50;
  font-weight:900;
  text-decoration:underline;
}

@media(max-width:520px){
  .ad-actions-v3{
    grid-template-columns:1fr;
  }
}

/* ===== Ads Expiry V3 ===== */
.ads-expiry-admin-panel-v3{
  direction:rtl;
  margin:14px auto;
  padding:15px;
  border-radius:20px;
  background:linear-gradient(145deg,#ffffff,#fffdf5);
  border:1px solid rgba(216,196,135,.45);
  box-shadow:0 12px 30px rgba(0,35,30,.08);
  color:#063b34;
  font-family:Tahoma,Arial,sans-serif;
}

.ads-expiry-admin-panel-v3 h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
}

.ads-expiry-admin-panel-v3 p,
.ads-expiry-admin-panel-v3 small{
  color:#745b15;
  font-weight:800;
}

.ads-expiry-grid-v3{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:12px 0;
}

.ads-expiry-grid-v3 label{
  font-weight:900;
}

.ads-expiry-grid-v3 select,
.ads-expiry-grid-v3 input{
  width:100%;
  margin-top:6px;
  border:1px solid rgba(6,59,52,.15);
  border-radius:14px;
  padding:10px;
  font-family:Tahoma,Arial,sans-serif;
}

@media(max-width:520px){
  .ads-expiry-grid-v3{grid-template-columns:1fr}
}

/* ===== Ads Expiry V3 ===== */
.ads-expiry-admin-panel-v3{
  direction:rtl;
  margin:14px auto;
  padding:15px;
  border-radius:20px;
  background:linear-gradient(145deg,#ffffff,#fffdf5);
  border:1px solid rgba(216,196,135,.45);
  box-shadow:0 12px 30px rgba(0,35,30,.08);
  color:#063b34;
  font-family:Tahoma,Arial,sans-serif;
}

.ads-expiry-admin-panel-v3 h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
}

.ads-expiry-admin-panel-v3 p,
.ads-expiry-admin-panel-v3 small{
  color:#745b15;
  font-weight:800;
}

.ads-expiry-grid-v3{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:12px 0;
}

.ads-expiry-grid-v3 label{
  font-weight:900;
}

.ads-expiry-grid-v3 select,
.ads-expiry-grid-v3 input{
  width:100%;
  margin-top:6px;
  border:1px solid rgba(6,59,52,.15);
  border-radius:14px;
  padding:10px;
  font-family:Tahoma,Arial,sans-serif;
}

@media(max-width:520px){
  .ads-expiry-grid-v3{grid-template-columns:1fr}
}
