body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    padding-bottom: 50px;
  }
  
  .login-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
  }
  
  header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 10px;
  }
  
  .card-header {
    border-radius: 10px 10px 0 0 !important;
  }
  
  .task-container {
    max-height: 500px;
    overflow-y: auto;
  }
  
  .task-item {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-left: 4px solid #0d6efd;
  }
  
  .task-text {
    word-break: break-word;
  }
  
  .task-complete-btn {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 10px;
  }
  
  /* Responsive düzenlemeler */
  @media (max-width: 768px) {
    .container-fluid {
      padding: 10px;
    }
    
    h1 {
      font-size: 1.5rem;
    }
    
    .card-header h5 {
      font-size: 1rem;
    }
  }
  
  /* İşlerin durumuna göre renklendirme */
  .task-item.urgent {
    border-left-color: #dc3545;
  }
  
  .task-item.normal {
    border-left-color: #0d6efd;
  }
  
  .task-item.low {
    border-left-color: #198754;
  }