/* main.css - ServiceNow Daily Tips */

/* Globale stijl */
body {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic", "Arial", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  background: #f6f8f7;
  color: #222;
}

/* Container */
.container {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Header */
.header,
.site-header {
  background: #1e3d38;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.header h1,
.site-header h1,
.site-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

/* Content */
.content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.content h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.content p {
  margin: 0.5rem 0;
}

/* Callout */
.callout {
  background: #edf1f0;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.callout strong {
  display: block;
  margin-bottom: 0.3rem;
}

/* Callout success */
.callout.success {
  background: #e6f7eb;
  border: 1px solid #b3e6c2;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.links {
  margin-top: 1rem;
}

.links a {
  margin: 0 0.5rem;
}

/* Lists */
ul.link-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

ul.link-list li {
  margin: 0.3rem 0;
}

/* Buttons */
.btn,
button {
  display: inline-block;
  background: #1e3d38;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover,
button:hover {
  background: #2e5a52;
}

/* Forms */
form {
  margin-top: 1rem;
}

.form .field {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
}

input[type="checkbox"] {
  margin-right: 0.4rem;
}

small.hint {
  color: #666;
  font-size: 0.85rem;
}

/* Honeypot */
.hp {
  display: none;
}

/* Status message */
.status {
  font-size: 1.2rem;
  margin: 1rem 0;
  padding: 1rem;
  background: #f1f9ff;
  border: 1px solid #cce5ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.status-icon {
  font-size: 1.4rem;
  margin-right: 0.5rem;
  color: green;
}

/* Cards */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.card.subtle {
  background: #f8f9f8;
}

/* Footer */
.footer,
.site-footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 12px;
  background: #f6f8f7;
  font-size: 0.9rem;
  color: #666;
}

.footer a,
.site-footer a {
  color: #0066cc;
}

.smallprint {
  font-size: 0.8rem;
}

/* Prose (for disclaimer / privacy pages) */
.prose h2 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

.prose h3 {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.prose p {
  margin: 0.6rem 0;
}

.rule {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1.5rem 0;
}