

/* HEADER */
.msr-header {
  text-align: center;
  margin-bottom: 25px;
}

.msr-header h2 {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 28px;
}

/* CARD */
.msr-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

/* TOP BORDER */
.msr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-blue), var(--accent-red));
}

/* TABLE */
.msr-table {
  width: 100%;
  border-collapse: collapse;
}

/* ROWS */
.msr-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}

/* FIRST COLUMN */
.msr-table td:first-child {
  width: 60px;
  font-weight: bold;
  color: var(--primary-blue);
}

/* LINK */
.msr-table a {
  color: var(--accent-red);
  font-weight: 600;
  text-decoration: none;
}

.msr-table a:hover {
  text-decoration: underline;
}

/* HOVER */
.msr-table tr:hover {
  background: #f9fbff;
}

.btn-link {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-blue);
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover */
.btn-link:hover {
  background: var(--accent-red);
  color: #fff;
  text-decoration: none;
}

/* Optional: small button */
.btn-link.small {
  padding: 5px 12px;
  font-size: 12px;
}
/* MOBILE */
@media (max-width: 768px) {
  .msr-table td {
    font-size: 13px;
    padding: 10px;
  }
}