/** {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }*/

    /*body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      line-height: 1.6;
    }

    main {
      background: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      max-width: 450px;
      width: 100%;
    }*/

    /*h2 {
      color: #333;
      margin-bottom: 20px;
      font-size: 28px;
      font-weight: 600;
    }*/

    /*p {
      color: #666;
      margin-bottom: 20px;
      font-size: 16px;
    }*/

    strong {
      color: #667eea;
      font-weight: 600;
    }

    nav {
      margin: 24px 0;
    }

    nav ul {
      list-style: none;
      padding: 0;
    }

    nav ul li {
      margin-bottom: 12px;
    }

    a {
      color: #667eea;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.2s;
      display: inline-block;
    }

    a:hover {
      color: #764ba2;
      transform: translateX(4px);
    }

    label {
      display: block;
      margin-bottom: 8px;
      color: #555;
      font-weight: 500;
      font-size: 14px;
    }

    .helptext {
      font-size: 13px;
      color: #999;
      margin-top: -12px;
      margin-bottom: 16px;
      display: block;
    }

    .errorlist {
      list-style: none;
      color: #e74c3c;
      font-size: 14px;
      margin-bottom: 16px;
      padding: 12px;
      background: #fee;
      border-radius: 6px;
      border-left: 3px solid #e74c3c;
    }

    ul.errorlist li {
      margin-bottom: 4px;
    }

    /* Form field styling for Django forms */
    p:has(input),
    p:has(select),
    p:has(textarea) {
      margin-bottom: 0;
    }