.laptop-container {
  .organizations {
    /* Seminars Section */
    .seminars-section {
      margin-top: 3rem;
      border: 1px solid var(--primary-orange);
      border-radius: 8px;
      padding: 1rem;
      padding-bottom: 1.5rem;

      .section-header {
        margin-bottom: 1.5rem;

        .header-group {
          display: flex;
          align-items: center;
          gap: 1rem;
        }

        h2 {
          margin: 0;
          color: #333;
          font-size: 1.5rem;
          font-weight: 600;
        }

        .button {
          margin-left: 1rem;
        }
      }

      .seminars-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
      }

      .seminar-card {
        padding: 1rem;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease;

        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        h3 {
          margin-top: 0rem;
          margin-bottom: 1rem;
          color: #333;
          font-size: 1.2rem;
          font-weight: 600;
        }

        p {
          margin-bottom: 1rem;
          color: #555;

          &:last-child {
            margin-bottom: 0;
          }
        }

        .seminar-link {
          font-size: 0.8em;
          font-weight: 100;
        }
      }
    }

    /* Organization Index Page */
    .index-actions {
      margin-bottom: 1rem;
    }

    table {
      border-collapse: collapse;
      width: 100%;
    }

    th {
      text-align: left;
      padding: 0.75rem 0;
    }

    td {
      padding: 0.5rem 0;

      a {
        text-decoration: none;

        &:hover {
          text-decoration: underline;
        }
      }
    }

    /* Organization Show Page */
    .actions {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    h1 {
      margin-bottom: 2rem;
      color: #333;
      font-size: 2rem;
      font-weight: 600;
    }

    /* Organization Form Styles */
    .organization-form {
      max-width: 600px;
      margin: 2rem 0;
      padding: 2rem;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .organization-form h1 {
      margin-bottom: 2rem;
      color: #333;
      font-size: 1.8rem;
      text-align: left;
    }

    .organization-form .field {
      margin-bottom: 1.5rem;
    }

    .organization-form label {
      display: block;
      margin-bottom: 0.5rem;
      color: #555;
      font-weight: 500;
    }

    .organization-form input[type="text"],
    .organization-form input[type="textarea"],
    .organization-form textarea,
    .organization-form select {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 1rem;
      transition: border-color 0.2s ease;
      background-color: white;
    }

    .organization-form input[type="text"]:focus,
    .organization-form input[type="email"]:focus,
    .organization-form textarea:focus,
    .organization-form select:focus {
      border-color: var(--primary-orange);
      outline: none;
      box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    }

    .organization-form .field.country select {
      max-width: 400px;
    }

    .organization-form .actions {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .organization-form .button {
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.2s ease;
    }

    .organization-form .button:hover {
      transform: translateY(-1px);
    }

    /* Error Styles */
    .organization-form #error_explanation {
      margin-bottom: 2rem;
      padding: 1rem;
      background: #fff5f5;
      border: 1px solid #feb2b2;
      border-radius: 4px;
    }

    .organization-form #error_explanation h2 {
      margin-bottom: 1rem;
      color: #c53030;
      font-size: 1rem;
      font-weight: 500;
    }

    .organization-form #error_explanation ul {
      margin-left: 1rem;
      color: #c53030;
      list-style-type: disc;
    }

    .organization-form input[type="text"].field_with_errors {
      border-color: #c53030;
    }

    /* Field Hints */
    .field-hint {
      margin-top: 0.25rem;
      color: #666;
      font-size: 0.875rem;
      font-style: italic;
    }

    /* Tabs */
    .tabs {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid #e5e7eb;
      padding-bottom: 0;
    }

    .tab {
      padding: 0.5rem 1rem;
      text-decoration: none;
      color: #6b7280;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
    }

    .tab:hover {
      color: #111827;
    }

    .tab.active {
      color: #111827;
      border-bottom-color: var(--primary-orange);
      font-weight: 500;
    }

    /* Role management styles */
    .settings-section {
      margin-top: 2rem;
    }

    .role-management {
      margin-top: 1.5rem;
    }

    .search-section {
      margin-bottom: 2rem;
      max-width: 600px;
      padding: 1.5rem;
      background: #f9fafb;
      border-radius: 8px;

      h3 {
        margin-bottom: 1rem;
        color: #333;
        font-size: 1.2rem;
        font-weight: 600;
      }

      .search-field {
        display: flex;
        gap: 0.5rem;

        input[type="email"] {
          flex: 1;
          padding: 0.75rem;
          border: 1px solid #ddd;
          border-radius: 4px;
          font-size: 1rem;
        }

        .button {
          padding: 0.75rem 1.5rem;
          background: var(--primary-orange);
          color: white;
          border: none;
          border-radius: 4px;
          cursor: pointer;
          font-weight: 500;

          &:hover {
            background: #ffb347;
          }
        }
      }
    }

    .found-user {
      margin-top: 1rem;
      padding: 1rem;
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 4px;

      .user-info {
        margin-bottom: 0.5rem;
        font-weight: 500;
      }

      .role-actions {
        display: flex;
        gap: 0.5rem;

        .button {
          padding: 0.5rem 1rem;
          font-size: 0.875rem;
        }
      }
    }

    .current-users {
      h3 {
        margin-bottom: 1rem;
        color: #333;
        font-size: 1.2rem;
        font-weight: 600;
      }
    }

    .user-list {
      margin: 1rem 0;
    }

    .user-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background-color: #f9fafb;
      border-radius: 8px;
      margin-bottom: 0.75rem;

      .user-info {
        display: flex;
        align-items: center;
        gap: 1rem;

        .user-roles {
          display: flex;
          gap: 0.5rem;

          .role {
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;

            &.admin {
              background-color: #fef3c7;
              color: #92400e;
            }

            &.moderator {
              background-color: #e0e7ff;
              color: #3730a3;
            }
          }
        }
      }

      .role-actions {
        display: flex;
        gap: 0.5rem;

        .button {
          padding: 0.375rem 0.75rem;
          font-size: 0.875rem;
        }

        .button-danger {
          background-color: #fee2e2;
          color: #b91c1c;
          border: none;

          &:hover {
            background-color: #fecaca;
          }
        }
      }
    }
  }
}
