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

body {
  line-height: 1.6;
  font-size: 16px;
}

img {
  width: 100%;
  border-radius: 12px;
  margin-top: 15px;
}

/* Container */
article.login-docs {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header */
.website-header {
  text-align: center;
  margin-bottom: 40px;
}

.website-header h1 {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 12px;
}

.website-header p {
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Sections */
.website-section {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2::before {
  content: "🧩";
  font-size: 1.2rem;
  color: #10b981;
}

h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 10px;
}

p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #374151;
}

.website-step-content {
  font-size: 1.2rem;
}

/* Lists */
ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

li {
  list-style-type: none;
  margin-bottom: 0.75rem;
}

/* Highlight boxes */
.website-highlight {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Steps */
.website-step {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
}

.website-step-content p {
  margin-bottom: 10px;
}

/* Table Styling */
.website-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 10px;
}

.website-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-bottom: 10px;
}

.website-table th,
.website-table td {
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.website-table th {
  background: #f3f4f6;
  font-weight: 600;
  color: #111827;
}

.website-table td {
  color: #374151;
  background-color: #fff;
}

.website-table tr:nth-child(even) td {
  background: #f9fafb;
}

.website-table td:first-child {
  font-weight: 600;
  width: 30%;
}

/* Footer */
.website-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  article.login-docs {
    padding: 20px;
    margin: 58px 0 0 0 !important;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .website-step {
    padding: 15px 20px;
  }
  .website-table th,
  .website-table td {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

@media (min-width: 1025px) {
  article.login-docs {
    margin-left: calc(260px + 40px);
  }
}

@media (max-width: 1024px) {
  article.login-docs {
    margin-left: 0;
  }
}
