      .risk-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
         .header {
      background-color: #111;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 30px;
      font-size: 16px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .header .logo {
      font-weight: bold;
      font-size: 18px;
    }

    .header .nav {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .header .nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
    }

    .header .nav a:hover {
      text-decoration: underline;
    }
    .wrapper {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      max-width: 1400px;
      margin: 40px auto;
      padding: 0 20px;
    }
    @media (max-width: 1000px) {
      .wrapper {
        flex-direction: column;
        align-items: center;
      }
      
   .header {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
        text-align: center;
      }
    }


        .glow {
            box-shadow: 0 0 15px rgba(66, 153, 225, 0.5);
        }
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* Custom styling for the allocation input fields */
        .allocation-input-group {
            display: flex;
            align-items: center;
        }
        .allocation-input-group input {
            flex-grow: 1;
            margin-right: 8px; /* Space between input and % */
        }