body {
    width: 300px;
    margin: 0;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #ddd; */
  }
  
  header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }
  
  h1 {
    font-size: 25px;
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
    /* font-family: "Roboto", sans-serif; 
    */
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
  }
  
  .input-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
  }
  
  textarea {
    width: calc(100% - 32px);
    height: 100px;
    padding: 8px;
    /* margin: 0 8px; */
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
  }
  
  .upload-container {
    display: flex;
    align-items: center;
  }
  
  .upload-btn {
    padding: 8px 12px;
    background-color: #e3f2fd;
    color: #1976d2;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    margin-right: 10px;
    border: 1px solid #bbdefb;
  }
  
  .upload-btn:hover {
    background-color: #bbdefb;
  }
  
  #fileName {
    font-size: 13px;
    color: #666;
  }
  
  input[type="file"] {
    display: none;
  }
  
  .analyze-btn {
    width: 100%;
    padding: 10px;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .analyze-btn:hover {
    background-color: #1565c0;
  }
  
  /* Analysis Section */
  .analysis-section {
    margin-top: 20px;
  }
  
  .progress-container {
    margin-bottom: 15px;
  }
  
  .progress-bar {
    height: 6px;
    background-color: #3498db;
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
    margin-bottom: 5px;
  }
  
  #progressText {
    font-size: 13px;
    color: #666;
  }
  
  .risk-card {
    border-left: 4px solid #f39c12;
    padding: 10px 15px;
    background-color: #fff9e6;
    border-radius: 0 8px 8px 0;
    margin-bottom: 15px;
  }
  
  .risk-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .risk-icon {
    font-size: 20px;
    margin-right: 10px;
  }
  
  .risk-level {
    font-weight: bold;
    color: #e67e22;
  }
  
  .risk-flags ul {
    margin: 0;
    padding-left: 20px;
  }
  
  .risk-flags li {
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  .detailed-analysis {
    display: none;
    margin-top: 15px;
  }
  
  .analysis-category {
    margin-bottom: 15px;
  }
  
  .analysis-category h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
  }
  
  .analysis-category p {
    margin: 5px 0;
    font-size: 13px;
  }
  
  .action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }
  
  .action-buttons button {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
  }
  
  #reportScam {
    background-color: #ffebee;
    color: #c62828;
    margin-right: 8px;
  }
  
  #reportScam:hover {
    background-color: #ffcdd2;
  }
  
  #viewDetails {
    background-color: #e8f5e9;
    color: #2e7d32;
    margin-left: 8px;
  }
  
  #viewDetails:hover {
    background-color: #c8e6c9;
  }
  
  /* Risk level colors */
  .low-risk {
    color: #2ecc71;
  }
  
  .medium-risk {
    color: #f39c12;
  }
  
  .high-risk {
    color: #e74c3c;
  }
  
  .safe-icon {
    color: #2ecc71;
  }
  
  .warning-icon {
    color: #f39c12;
  }
  
  .danger-icon {
    color: #e74c3c;
  }

  .flag-highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
  }