/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #008080, #ff6f61); /* Teal to Orange gradient */
    color: #333;
  }
  
  .container {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px); /* Adds a blur effect to the background */
  }
  
  h1 {
    color: #008080; /* Teal */
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Form Styles */
  .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    color: #008080; /* Teal */
    font-weight: bold;
  }
  
  select, input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #008080; /* Teal */
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
  }
  
  select:focus, input:focus {
    border-color: #ff6f61; /* Orange */
    outline: none;
  }
  
  /* Button Styles */
  .btn {
    background: #ff6f61; /* Orange */
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #e65a50; /* Darker Orange */
  }
  
  /* Result Styles */
  .result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    border-radius: 8px;
    border: 2px solid #008080; /* Teal */
    backdrop-filter: blur(10px); /* Adds a blur effect to the background */
  }
  
  .result.hidden {
    display: none;
  }
  
  #riskScore {
    color: #ff6f61; /* Orange */
    font-weight: bold;
  }
  
  #riskLevel, #advice {
    color: #333;
    margin-top: 1rem;
  }