
    /* Modern CSS reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }

    /* Core styles */
    body {
        font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
        background-color: #f0f4f8;
        color: #1f2937;
        padding: 20px;
        line-height: 1.5;
    }

    .container {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Card components with enhanced styling */
    .card {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        margin-bottom: 24px;
        overflow: hidden;
        border: 1px solid #e5e7eb;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .card-header {
        background: linear-gradient(135deg, #4361ee, #3a86ff);
        color: white;
        padding: 22px 24px;
        font-weight: bold;
        font-size: 1.25rem;
        letter-spacing: 0.01em;
    }

    .card-body {
        padding: 24px;
    }

    .client-card {
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        margin-bottom: 20px;
        background-color: #f9fafb;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
        overflow: hidden;
    }

    .client-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        border-bottom: 1px solid #e5e7eb;
        background-color: #f8fafc;
    }

    .client-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1e3a8a;
    }

    .client-id {
        font-size: 0.9rem;
        color: #6b7280;
        margin-left: 8px;
    }

    .client-body {
        padding: 0;
    }

    .client-info {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
    }

    .client-details {
        display: flex;
        justify-content: space-around;
        width: 100%;
        margin-top: 10px;
        font-size: 0.95rem;
    }

    .detail-label {
        color: #6b7280;
        margin-right: 6px;
    }

    .client-actions {
        padding: 16px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Enhanced wellness score indicator */
    .score-circle {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 2.2rem;
        margin: 10px auto;
        position: relative;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    }

    .score-label {
        margin-top: 8px;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .score-high { 
        background: linear-gradient(135deg, #059669, #10b981);
        border: 3px solid #ecfdf5;
    }

    .score-medium { 
        background: linear-gradient(135deg, #d97706, #f59e0b);
        border: 3px solid #fffbeb;
    }

    .score-low { 
        background: linear-gradient(135deg, #dc2626, #ef4444);
        border: 3px solid #fef2f2;
    }

    /* Improved buttons */
    .btn {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        border: none;
        transition: all 0.2s;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .btn:active {
        transform: translateY(1px);
    }

    .btn-blue {
        background: linear-gradient(to bottom, #3b82f6, #2563eb);
        color: white;
    }

    .btn-blue:hover {
        background: linear-gradient(to bottom, #2563eb, #1d4ed8);
    }

    .btn-gray {
        background-color: #f3f4f6;
        color: #1f2937;
        border: 1px solid #e5e7eb;
    }

    .btn-gray:hover {
        background-color: #e5e7eb;
    }

    .action-buttons {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .client-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .client-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .action-buttons {
            margin-bottom: 12px;
        }

        .card-header {
            padding: 16px;
        }
    }
    /* Footer */
    .cw-footer {
        background: #0b3b4c;
        color: #ffffff;
        padding: 1.5rem 1rem 1rem;
        margin-top: 2rem;
        font-size: 0.9rem;
    }
    .cw-footer-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        align-items: flex-start;
        justify-content: space-between;
    }
    .cw-footer-title {
        font-weight: 700;
        font-size: 1rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    .cw-footer-text {
        margin: 0;
        max-width: 320px;
        line-height: 1.4;
    }
    .cw-footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .cw-footer-links a {
        color: #f4d18b;
        text-decoration: none;
        font-weight: 500;
    }
    .cw-footer-links a:hover {
        text-decoration: underline;
    }
    .cw-footer-bottom {
        max-width: 1100px;
        margin: 1rem auto 0;
        text-align: center;
        font-size: 0.75rem;
        opacity: 0.8;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 0.75rem;
    }
    @media (max-width: 640px) {
        .cw-footer-inner {
            flex-direction: column;
            align-items: flex-start;
        }
        .cw-footer-links {
            flex-direction: column;
        }
    }

    /* Footer Styling */
    footer, .cw-footer, .site-footer {
      background: transparent;
      color: #123b4a;
      text-align: center;
      padding: 1rem 0 2rem;
      font-size: 0.9rem;
      line-height: 1.4;
      border-top: 1px solid #e5e9ec;
      margin-top: 2rem;
    }
    footer a {
      color: #0f7185;
      text-decoration: none;
      margin: 0 0.4rem;
      font-weight: 500;
    }
    footer a:hover { text-decoration: underline; color: #0c5d6c; }
    footer p { margin: 0.3rem 0; }
    /* Footer link styling */
    footer a {
      color: #0f7185;              /* Check WellCare teal */
      text-decoration: none;
      margin: 0 0.4rem;
      font-weight: 500;
    }

    footer a:hover {
      color: #0c5d6c;
      text-decoration: underline;
    }
/* ============ Footer (boxed card) ============ */
.app-footer { background: transparent; padding: 1.25rem 0 2rem; }
.app-footer__container{
  max-width:1100px;margin:0 auto;background:#fff;border:1px solid #e6e9ec;
  border-radius:16px;box-shadow:0 10px 24px rgba(16,24,40,.06);padding:16px 18px;
}
.app-footer__brand{margin:0;font-weight:700;color:#123b4a;font-size:.95rem;}
.app-footer__tagline{margin:4px 0 10px;color:#4b5b66;font-size:.9rem;line-height:1.4;}
.app-footer__links{display:flex;flex-wrap:wrap;gap:6px 12px;align-items:center;font-size:.88rem;margin:4px 0 10px;}
.app-footer__links a{color:#0f7185;text-decoration:none;font-weight:500;position:relative;padding-right:12px;}
.app-footer__links a:not(:last-child)::after{content:"•";position:absolute;right:2px;color:#a3b1b8;}
.app-footer__links a:hover{color:#0c5d6c;text-decoration:underline;}
.app-footer__copy{margin:0;color:#6a7a84;font-size:.82rem;border-top:1px solid #eef2f5;padding-top:10px;}
@media (max-width:640px){
  .app-footer__container{border-radius:14px;padding:14px;}
  .app-footer__links{gap:6px 10px;}
  .app-footer__tagline{font-size:.88rem;}
  .app-footer__copy{font-size:.8rem;}
}

    

    