/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* Body and Container */
  body {
    background-color: #81879f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    background-color: #2f3640;
    color: #f5f6fa;
    width: 350px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
  }
  
  header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 24px;
    color: #e1b12c;
  }
  
  header p {
    font-size: 14px;
    color: #f5f6fa;
    opacity: 0.8;
  }
  
  /* Task Input */
  .task-input {
    display: flex;
    justify-content: space-between;
  }
  
  #task {
    flex: 1;
    padding: 8px;
    border: none;
    outline: none;
    border-radius: 5px;
    margin-right: 10px;
  }
  
  #addTaskBtn {
    padding: 8px 12px;
    background-color: #e1b12c;
    color: #2f3640;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  #addTaskBtn:hover {
    background-color: #d1a11b;
  }
  
  /* Task List */
  .task-list {
    margin-top: 20px;
  }
  
  .task-list ul {
    list-style: none;
  }
  
  .task-list li {
    background-color: #353b48;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
  }
  
  .task-list button {
    background-color: #e84118;
    border: none;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
  }
  
  .task-list button:hover {
    background-color: #c23616;
  }
  