:root {
  --palestine-black: #000000;
  --palestine-white: #FFFFFF;
  --palestine-green: #007A3D;
  --palestine-red: #CE1126;
  --gold: #F0C808;
}

body {
  text-align: center;
}

.container {
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  max-width: 650px;
  margin: 25px auto;
  background-color: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--palestine-green);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--palestine-black) 0% 25%,
      var(--palestine-white) 25% 50%,
      var(--palestine-green) 50% 75%,
      var(--palestine-red) 75% 100%);
  border-radius: 8px 0 0 8px;
}

hr {
  width: 70%;
  border: 0;
  height: 2px;
  background: linear-gradient(to right,
      transparent,
      var(--palestine-green),
      var(--palestine-red),
      transparent);
  margin: 35px auto;
  opacity: 0.7;
}

h1 {
  color: var(--palestine-green);
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

.date-time {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(135deg, var(--palestine-green), var(--palestine-black));
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
  margin-top: 30px;
  padding: 22px;
  border-radius: 6px;
  border-left: 5px solid var(--palestine-red);
  background-color: rgba(206, 17, 38, 0.07);
  transition: all 0.3s ease;
}

.section:hover {
  transform: translateX(5px);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.section.palestine-theme {
  background-color: rgba(0, 122, 61, 0.07);
  border-left-color: var(--palestine-green);
}

a {
  color: var(--palestine-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--palestine-red);
  text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--palestine-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

a:hover::after {
  transform: scaleX(1);
}

address {
  font-style: normal;
  background-color: rgba(0, 122, 61, 0.1);
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
  margin: 10px 0;
  border-left: 3px solid var(--palestine-red);
}

ins {
  text-decoration: none;
  background: linear-gradient(90deg, var(--palestine-red), var(--palestine-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
    margin: 15px;
    width: auto;
  }

  h1 {
    font-size: 1.8rem;
  }
}

div#countdown {
  font-weight: bold;
}

.file-link-flex {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.file-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hover effect only on link text */
.file-row a {
  color: #006400;
  /* default link color */
  text-decoration: none;
}

.file-row a:hover {
  color: red;
  background: transparent;
  /* remove any red background */
}

.file-label {
  font-weight: bold;
  color: var(--palestine-green);
  width: 30%;
  min-width: 130px;

  /* same as table layout */
  flex-shrink: 0;
  text-align: left;
  white-space: nowrap;
}

/* Modern Button Group */
.button-group {
  display: flex;
  gap: 8px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

/* Modern Button Style */
.switcher-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.switcher-btn.active {
  background: white;
  color: var(--palestine-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.switcher-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
  color: #475569;
}

/* Content Area */
.content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.content.active {
  opacity: 1;
  height: auto;
  padding: 1rem 0;
}

.year-filter {
  margin-top: -1rem;
}
/* Modern Content Card */
/* .content-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
} */