.home-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: #f7f9fc;
  }
  
  .home-card {
    background: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
  }
  
  .welcome {
    margin-bottom: 1rem;
    color: #333;
  }
  
  .description {
    margin: 1rem 0;
    color: #666;
  }
  
  .actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .logout-form {
    margin-top: 1rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn.primary {
    background: #007bff;
    color: white;
  }
  
  .btn.primary:hover {
    background: #0056b3;
  }
  
  .btn.danger {
    background: #dc3545;
    color: white;
  }
  
  .btn.danger:hover {
    background: #a71d2a;
  }
  