/* Global styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('kb-bg.jpg'); /*todo, make png */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Drop shadow effect */
  }
  
  /* Heading */
  h1 {
    font-size: 24px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Paragraphs */
  p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
  }
  
  /* File input */
  input[type="file"] {
    display: none; /* Hide default file input */
  }
  
  /* Custom file button */
  #customFileButton {
    background-color: #69359C; /* Purple background for button */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Cursor style */
    transition: background-color 0.3s ease; /* Smooth transition */
    margin-bottom: 20px; /* Consistent spacing */
  }
  
  #customFileButton:hover {
    background-color: #442365; /* Darker purple on hover */
  }
  
  /* File count message */
  #fileCount {
    font-style: italic;
    margin-top: 10px;
    display: none; /* Initially hidden */
  }
  
  /* Input and textarea */
  input[type="text"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  /* Upload button */
  button[onclick="uploadFiles()"] {
    background-color: #69359C; /* Purple background for button */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Cursor style */
    transition: background-color 0.3s ease; /* Smooth transition */
    margin-top: 20px; /* Consistent spacing */
  }
  
  button[onclick="uploadFiles()"]:hover {
    background-color: #442365; /* Darker purple on hover */
  }
  
  /* Progress bar */
  progress {
    width: 100%;
    height: 20px;
    margin-bottom: 10px;
  }
  
  /* File upload progress */
  .file-container {
    margin-bottom: 20px;
  }
  
  .file-name {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .file-progress-text {
    margin-top: 5px;
  }
  
  /* Message display */
  #message {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
  }  