/* --- Activity Card & Description Improvements --- */
.activity-card {
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07) !important;
  padding: 18px 18px 14px 18px !important;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #f0f0f0 !important;
}
.activity-title {
  font-size: 1.08em !important;
  font-weight: 600 !important;
  color: #2575fc !important;
  margin-bottom: 2px !important;
  letter-spacing: 0.1px !important;
}
.activity-description {
  color: #222 !important;
  font-size: 0.97em !important;
  margin-bottom: 6px !important;
  background: #f7fafd !important;
  border-radius: 6px !important;
  padding: 10px 13px !important;
  line-height: 1.65 !important;
  box-shadow: none !important;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
  word-break: break-word;
}
.activity-content-items {
  margin-top: 6px !important;
  gap: 10px !important;
}
.activity-content-text {
  background: #f9f9f9 !important;
  border-radius: 4px !important;
  padding: 8px 12px !important;
  color: #333 !important;
  font-size: 0.95em !important;
  line-height: 1.55 !important;
  box-shadow: none !important;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.activity-content-image img {
  max-width: 100%;
  border-radius: 6px !important;
  box-shadow: 0 1px 4px rgba(52,152,219,0.06) !important;
  margin-bottom: 4px !important;
}
.activity-content-video {
  margin-top: 6px !important;
  background: #000 !important;
  border-radius: 7px !important;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 2px 6px rgba(37,117,252,0.07) !important;
}
.activity-content-video iframe, .activity-content-video video {
  width: 100%;
  min-height: 180px !important;
  border: none;
  border-radius: 7px !important;
  background: #000;
}
.activity-content-pdf a {
  display: inline-block;
  background: linear-gradient(90deg, #ff9966 0%, #ff5e62 100%) !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-decoration: none;
  padding: 8px 18px !important;
  border-radius: 5px !important;
  box-shadow: 0 2px 6px rgba(255,94,98,0.07) !important;
  font-size: 0.97em !important;
  margin-top: 2px !important;
  letter-spacing: 0.1px !important;
}
.activity-content-pdf a:hover {
  background: linear-gradient(90deg, #ff5e62 0%, #ff9966 100%) !important;
  box-shadow: 0 4px 12px rgba(255,94,98,0.11) !important;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .activity-card {
    padding: 12px 6px 10px 6px !important;
  }
  .activity-title {
    font-size: 1em !important;
  }
  .activity-description {
    font-size: 0.93em !important;
    padding: 8px 7px !important;
  }
  .activity-content-text {
    font-size: 0.92em !important;
    padding: 7px 7px !important;
  }
  .activity-content-pdf a {
    font-size: 0.93em !important;
    padding: 7px 10px !important;
  }
}

/* --- Activity Tab Redesign --- */
.activity-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  background: #f8f9fa;
  z-index: 10;
  padding: 18px 0 8px 0;
  border-bottom: 2px solid #ecf0f1;
}
.activity-tab-btn {
  background: #fff;
  color: #153d60;
  border: 2px solid #e1e8ed;
  border-radius: 8px 8px 0 0;
  padding: 8px 18px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(21,61,96,0.08);
  margin-bottom: -2px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  outline: none;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
}
.activity-tab-btn.active, .activity-tab-btn:focus {
  background: #f88f15;
  color: #fff;
  border-color: #f88f15;
  box-shadow: 0 4px 16px rgba(248,143,21,0.13);
}
.activity-tab-btn:disabled {
  background: #f0f0f0;
  color: #b0b0b0;
  cursor: not-allowed;
  box-shadow: none;
  border-color: #e1e8ed;
}
.activity-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 8px;
}
.group-info-card {
  padding-left: 15px !important;
}
.activity-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(21,61,96,0.08);
  padding: 22px 20px 18px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid #153d60;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.activity-card:hover {
  box-shadow: 0 4px 24px rgba(21,61,96,0.13);
  border-left-color: #f88f15;
}
.activity-title {
  font-size: 1.18em;
  font-weight: 700;
  color: #153d60;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.activity-description {
  color: #34495e;
  font-size: 1.08em;
  margin-bottom: 8px;
  background: #f4f8ff;
  border-radius: 6px;
  padding: 12px 16px;
  line-height: 1.7;
  box-shadow: 0 1px 4px rgba(21,61,96,0.04);
}
@media (max-width: 900px) {
  .activity-cards-grid {
    grid-template-columns: 1fr;
    max-height: 70vh;
  }
}

/* --- Activity Content Tabs (Override) --- */
.activity-content-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.activity-title {
  font-size: 24px !important;
  color: #000 !important;
}
.activity-content-tab-btn {
  background: #e0e0e0 !important;
  color: #b0b0b0 !important;
  border: none !important;
  border-radius: 6px 6px 0 0 !important;
  padding: 15px 18px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: not-allowed !important;
  transition: background 0.2s, color 0.2s;
  outline: none;
  box-shadow: 0 1px 3px rgba(37,117,252,0.04) !important;
  margin-bottom: -2px;
  opacity: 1 !important;
}
.activity-content-tab-btn.active, .activity-content-tab-btn:focus {
  background: #26A688 !important;
  color: #fff !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(38,166,136,0.09) !important;
}

@media (max-width: 600px) {
  .activity-content-tabs {
    flex-direction: column;
    gap: 4px;
  }
  .activity-content-tab-btn {
    width: 100%;
    padding: 15px 0 !important;
    font-size: 12px !important;
  }
}

/* --- User List Modern Redesign --- */
.user-row-modern {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(38,166,136,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  border-bottom: 1.5px solid #f2f6f8;
  vertical-align: middle;
}
.user-row-modern:hover {
  box-shadow: 0 4px 24px rgba(38,166,136,0.13);
  transform: translateY(-2px) scale(1.01);
}
.user-avatar-cell {
  width: 64px;
  text-align: center;
  padding: 12px 8px !important;
}
.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(38,166,136,0.10);
  border: 2px solid #e0f7f4;
  object-fit: cover;
  background: #f8fafc;
}
.user-info-cell {
  min-width: 180px;
  text-align: left;
  padding: 10px 8px !important;
}
.user-name-email {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.user-name {
  font-weight: 700;
  color: #181A1B;
  font-size: 1.08em;
  letter-spacing: 0.1px;
}
.user-email {
  color: #153d60;
  font-size: 0.97em;
  font-weight: 500;
  opacity: 0.85;
}
.user-tag-cell {
  min-width: 120px;
  text-align: center;
  padding: 10px 8px !important;
}
.user-tag {
  border-radius: 6px;
  border: 1.5px solid #f88f15;
  background: #fff8f1;
  padding: 6px 12px;
  font-size: 0.97em;
  color: #f88f15;
  font-weight: 700;
  transition: border 0.2s;
}
.user-score-cell {
  min-width: 90px;
  text-align: center;
  padding: 10px 8px !important;
}
.user-score-badge {
  display: inline-block;
  background: #153d60;
  color: #fff;
  font-weight: 700;
  border-radius: 16px;
  padding: 6px 18px;
  font-size: 1em;
  box-shadow: 0 1px 4px rgba(21,61,96,0.08);
}
.user-score-badge.not-assessed {
  background: #e1e8ed;
  color: #888;
}
.user-date-cell {
  min-width: 120px;
  text-align: center;
  padding: 10px 8px !important;
}
.user-date {
  color: #34495e;
  font-size: 0.98em;
  font-weight: 500;
}
.user-date.not-assessed {
  color: #b0b0b0;
}
.user-actions-cell {
  min-width: 110px;
  text-align: center;
  padding: 10px 8px !important;
}
.icon-btn {
  background: #f4f8fb;
  border: none;
  border-radius: 8px;
  color: #153d60;
  font-size: 1.2em;
  margin: 0 4px;
  padding: 7px 11px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 3px rgba(21,61,96,0.07);
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-btn i.dashicons {
  color: #153d60;
  font-size: 1.2em;
  transition: color 0.18s;
}
.icon-btn:hover, .icon-btn:focus {
  background: #f88f15;
  color: #fff;
  box-shadow: 0 2px 8px rgba(248,143,21,0.13);
}
.icon-btn:hover i.dashicons, .icon-btn:focus i.dashicons {
  color: #fff;
}

/* Responsive tweaks for user list */
@media (max-width: 900px) {
  .user-info-cell, .user-tag-cell, .user-score-cell, .user-date-cell, .user-actions-cell {
    padding: 8px 4px !important;
    font-size: 0.97em;
  }
  .user-avatar {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 600px) {
  .user-row-modern {
    border-radius: 8px;
    font-size: 0.95em;
  }
  .user-info-cell {
    min-width: 100px;
  }
  .user-avatar {
    width: 32px;
    height: 32px;
  }
  .user-score-badge {
    padding: 5px 10px;
    font-size: 0.95em;
  }
}

/* --- Button Redesign for #153d60 (blue) and #f88f15 (orange) Theme --- */
.btn.btn-primary {
  background: #153d60 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  font-size: 1em !important;
  box-shadow: 0 2px 8px rgba(21,61,96,0.10) !important;
  transition: background 0.18s, box-shadow 0.18s;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #102b44 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(21,61,96,0.18) !important;
}
.btn.btn-secondary {
  background: #f88f15 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  font-size: 1em !important;
  box-shadow: 0 2px 8px rgba(248,143,21,0.10) !important;
  transition: background 0.18s, box-shadow 0.18s;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: #c96e0a !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(248,143,21,0.18) !important;
}

/* --- Modal Redesign for #153d60/#f88f15 Theme --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(21,61,96,0.13);
  backdrop-filter: blur(2px);
}
#group-forgot-password-modal .modal-content{
  margin: 18% auto;
}
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 36px 32px 28px 32px;
  border-radius: 16px;
  width: 95%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(21,61,96,0.18);
  position: relative;
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-content h3 {
  color: #153d60;
  font-size: 1.35em;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 0.2px;
}
.modal-content .close {
  color: #f88f15;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  margin-left: 18px;
}
.modal-content .close:hover {
  color: #153d60;
}
.modal-content form {
  margin-top: 18px;
}
.modal-content .form-group {
  margin-bottom: 0px;
}
.modal-content label {
  font-weight: 600;
  color: #153d60;
  margin-bottom: 4px;
  display: block;
  font-size: 1em;
}
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="password"],
.modal-content select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e1e8ed;
  border-radius: 7px;
  font-size: 1em;
  background: #f8fafc;
  color: #153d60;
  font-weight: 500;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
.modal-content input[type="text"]:focus,
.modal-content input[type="email"]:focus,
.modal-content input[type="password"]:focus,
.modal-content select:focus {
  border-color: #f88f15;
  box-shadow: 0 0 0 2px #f88f1533;
}
.modal-content button[type="submit"] {
  width: 100%;
  margin-top: 8px;
}
.modal-content .message {
  margin-top: 10px;
  font-size: 1em;
  text-align: center;
}

/* --- User Assessments Table Redesign --- */
#assessments-table.data-table th {
  background: #f4f8fb;
  color: #153d60;
  font-weight: 700;
  border-bottom: 2px solid #e1e8ed;
  font-size: 1.05em;
  text-align: center;
}
#assessments-table.data-table td {
  text-align: center;
  font-size: 1em;
  color: #153d60;
  background: #fff;
  border-bottom: 1px solid #f0f2f5;
  padding: 12px 8px;
}
#assessments-table.data-table tr:hover {
  background: #f8f9fa;
}
.btn-view-assessment {
  background: #f4f8fb;
  border: none;
  border-radius: 8px;
  color: #153d60;
  font-size: 1.2em;
  margin: 0 4px;
  padding: 7px 11px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 3px rgba(21,61,96,0.07);
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-view-assessment .dashicons {
  color: #fff;
  font-size: 1.2em;
  transition: color 0.18s;
  opacity: 1;
}
.btn-view-assessment:hover, .btn-view-assessment:focus {
  background: #f88f15;
  color: #fff;
  box-shadow: 0 2px 8px rgba(248,143,21,0.13);
}
.btn-view-assessment:hover .dashicons, .btn-view-assessment:focus .dashicons {
  color: #fff;
  opacity: 1;
}

/* --- Assessment View Modal Redesign --- */
#assessment-view-modal .modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(21,61,96,0.18);
  padding: 36px 32px 28px 32px !important;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}
#assessment-view-modal h3 {
  color: #153d60;
  font-size: 1.25em;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
  text-align: center;
}
#assessment-view-modal .close {
  color: #f88f15;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  position: absolute;
  top: 10px;
  right: 18px;
}
#assessment-view-modal .close:hover {
  color: #153d60;
}
#assessment-view-content {
  color: #153d60;
  font-size: 1.05em;
  line-height: 1.7;
  margin-top: 10px;
}

/* 1. User row icons under username in assessments table */
.assessment-user-icons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  justify-content: center;
}
.assessment-user-icons .icon-btn {
  background: #f4f8fb;
  border: none;
  border-radius: 8px;
  color: #153d60;
  font-size: 1.1em;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 3px rgba(21,61,96,0.07);
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.assessment-user-icons .icon-btn i.dashicons {
  color: #153d60;
  font-size: 1.1em;
  transition: color 0.18s;
}
.assessment-user-icons .icon-btn:hover, .assessment-user-icons .icon-btn:focus {
  background: #f88f15;
  color: #fff;
  box-shadow: 0 2px 8px rgba(248,143,21,0.13);
}
.assessment-user-icons .icon-btn:hover i.dashicons, .assessment-user-icons .icon-btn:focus i.dashicons {
  color: #fff;
}

/* 2. Remove left margin from selection labels in assessment view popup */
#assessment-view-content .assessment-selection-label,
#assessment-view-content .assessment-selection-value,
#assessment-view-content .assessment-selection {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
}

/* User avatar and name in assessments table */
.user-avatar-name {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-avatar-name .user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid #153d60;
  box-shadow: 0 2px 8px rgba(21,61,96,0.10);
  background: #fff;
  object-fit: cover;
}
.user-avatar-name .user-name {
  font-weight: 700;
  color: #153d60;
  font-size: 1.08em;
  letter-spacing: 0.01em;
}

#assessment-view-content .assessment-selection-label.selected,
#assessment-view-content .assessment-selection-value.selected,
#assessment-view-content .assessment-selection.selected {
  background: #153d60 !important;
  color: #fff !important;
  font-size: 0.97em !important;
  font-weight: 600 !important;
  border-radius: 7px !important;
  padding: 7px 13px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(21,61,96,0.07) !important;
}

/* --- Email Template Modal Redesign --- */
#template-modal .modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(21,61,96,0.18);
  padding: 0 0 32px 0 !important;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  border: 2.5px solid #153d60;
}
#template-modal .modal-header {
  background: #153d60;
  color: #fff;
  border-radius: 18px 18px 0 0;
  padding: 22px 32px 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(21,61,96,0.10);
}
#template-modal .modal-header h3 {
  margin: 0;
  font-size: 1.22em;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
}
#template-modal .modal-header .close {
  color: #f88f15;
  font-size: 2.1em;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  margin-left: 18px;
}
#template-modal .modal-header .close:hover {
  color: #fff;
}
#template-modal .modal-body {
  padding: 28px 32px 0 32px;
}
#template-modal .form-group label {
  font-weight: 700;
  color: #153d60;
  margin-bottom: 4px;
  display: block;
  font-size: 1em;
}
#template-modal input[type="text"],
#template-modal textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e1e8ed;
  border-radius: 7px;
  font-size: 1em;
  background: #f8fafc;
  color: #153d60;
  font-weight: 500;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 10px;
}
#template-modal input[type="text"]:focus,
#template-modal textarea:focus {
  border-color: #f88f15;
  box-shadow: 0 0 0 2px #f88f1533;
}
#template-modal button[type="submit"] {
  width: 100%;
  background: #f88f15;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 12px 0;
  font-size: 1.08em;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(248,143,21,0.10);
  transition: background 0.18s, box-shadow 0.18s;
}
#template-modal button[type="submit"]:hover {
  background: #153d60;
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,61,96,0.18);
}
@media (max-width: 600px) {
  #template-modal .modal-content {
    max-width: 98vw;
    padding: 0 0 18px 0 !important;
  }
  #template-modal .modal-header, #template-modal .modal-body {
    padding: 16px 8px 0 8px;
  }
}

/* Fix excessive spacing between sidebar nav and logout button */
.dashboard-sidebar {
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #153d60;
  padding: 0 0 18px 0;
  position: relative;
}
.sidebar-logout {
  margin-top: 24px;
  padding: 0 18px 18px 18px;
}
.dashboard-content {
  flex: 1 1 0%;

}
#add-user-form {
  height: 450px;
  overflow: auto;
}
#update-user-form {
  height: 400px;
  overflow: auto;
}
#sidebar-toggle-btn:hover:active {
  background: #102b44 !important;
  padding-left: 8px;
}
.group-dashboard-header-bar {
  display: none !important;
}
@media (max-width: 900px) {
  .sidebar-logout {
    display: none;
  }
  #blogs-list {
    display: block;
    overflow-x: auto;
  }
  #blog-modal {
    margin-top: 20%;
  }
  #email-header-footer-tab-preview table {
    width: 100% !important;
    float: left;
  }
  #users .tab-header {
    display: inline-block !important;
    margin: 0px !important;
    padding: 0px !important;
  }
  .modal-content {
    margin-top: 25% !important;
  }
  #header-logout-btn:hover {
    background: #153d60 !important;
    color: #fff;
    padding-right: 10px;
  }
  .sidebar-nav ul {
    display: inline-block !important;
    overflow-x: auto;
  }
  #dashboard-sidebar {
    padding-left: 10px;
    padding-right: 10px;
    background: #153d60 !important;
  }
  .group-dashboard-header-bar {
    display: flex !important;
  }
  #sidebar-toggle-btn {
    background: #153d60 !important;
    color: #fff;
    padding-left: 10px;
  }
  .dashboard-content {
    margin: 0;
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
  }
}

/* --- User Dashboard Report Cards (match group dashboard) --- */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 30px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.report-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 28px 24px 22px 24px;
  border-left: 6px solid #153d60;
  position: relative;
  min-height: 120px;
  transition: border-color 0.2s;
}
.report-card:nth-child(2) { border-left-color: #f88f15; }
.report-icon {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #153d60;
  background: #e3eaf6;
  border-radius: 12px;
  padding: 14px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(21,61,96,0.07);
}
.report-card:nth-child(2) .report-icon {
  color: #f88f15;
  background: #fff3e0;
}
.report-info h3 {
  margin: 0 0 2px 0;
  font-size: 2.2em;
  color: #153d60;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.report-card:nth-child(2) .report-info h3 { color: #f88f15; }
.report-info p {
  margin: 0;
  color: #888;
  font-size: 1.08em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .reports-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .report-card {
    padding: 18px 10px 14px 10px;
    min-height: 90px;
  }
}
