/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.acts-page {
  padding: 20px;
  /* background: #f8fcff; */
}

/* Header */
.acts-header {
  text-align: center;
  margin-bottom: 40px;
}

.acts-header h1 {
  font-size: 2.5rem;
  color: #01354d;
}

.acts-header p {
  color: #666;
  margin-top: 8px;
}

/* Section */
.acts-section {
  margin-bottom: 50px;
}

.acts-section h2 {
  font-size: 1.8rem;
  color: #01354d;
  margin-bottom: 20px;
  border-left: 6px solid #ffc107;
  padding-left: 10px;
}

/* Act Cards */
.act-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s ease-in-out;
}

.act-card:hover {
  transform: translateY(-5px);
}

.act-card h3 {
  color: #01354d;
  margin-bottom: 10px;
}

.act-card p {
  margin-bottom: 12px;
  color: #555;
}

/* Links */
.act-card a {
  text-decoration: none;
  font-weight: 500;
  color: #ffc107;
  margin-right: 8px;
}

.act-card a:hover {
  color: #01354d;
}

.passed-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 8px;
    border: 1px solid #ffeeba;
    font-weight: 600;
}

@media (max-width: 700px) {
  .passed-badge {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }
  .act-card h3 {
    margin-top: 5px;
  }
}
