.ai-dashboard-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
  }
  
  .header h1 {
    font-size: 2em;
    text-align: center;
    color: #00f0ff;
  }
  
  .tagline {
    text-align: center;
    font-size: 1rem;
    color: #999;
  }
  
  .chat-box {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f0f8ff;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .chat-message {
    margin-bottom: 12px;
    position: relative;
    padding: 10px;
    border-radius: 12px;
    float: none;
    clear: none;
  }
  
  .chat-message.user {
    text-align: right;
    font-weight: bold;
    color: #333;
    background-color: #f0f8ff;
    display: inline-block;
    max-width: 80%;
    border-radius: 12px 12px 0 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    align-self: flex-end;
  }
  
  .chat-message.user::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #f0f8ff;
  }
  
  .chat-message.ai {
    text-align: left;
    background-color: #eef;
    padding: 8px 10px;
    border-radius: 12px 12px 12px 0;
    display: inline-block;
    max-width: 80%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    align-self: flex-start;
  }
  
  .chat-message.ai::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent #eef transparent transparent;
  }
  
  .ai-input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
  }
  
  .ai-input-area input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
  }
  
  .ai-input-area input:focus {
    border-color: #00c8ff;
    box-shadow: 0 0 5px rgba(0, 200, 255, 0.2);
  }
  
  .ai-input-area button {
    background: linear-gradient(to right, #00c8ff, #007cf0);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .ai-input-area button:hover {
    background: linear-gradient(to right, #00b6e0, #005ecb);
  }
  
  #aiPrompt {
    flex: 1;
    padding: 15px;
    font-size: 1em;
    border: none;
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  }
  
  .chart-area {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(145deg, #e0f7fa, #e6f0ff);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  }
  
  .chart-container {
    background: linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 212, 255, 0.15);
    max-width: 600px;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .chart-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.25);
  }
  
  .chart-container canvas {
    width: 100% !important;
    height: auto !important;
  }
  
  .chart-title {
    font-size: 1.2rem;
    color: #007cf0;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
  }
  