/** 
 * \file style.css 
 * Tämä on hakemukseen liittyvä css-stylesheet-tiedosto. 
 */

/*
    Tyylittelyssä otettu inspiraatiota suoraan soihdun kotisivuilta ja myös JYY:n sivuilta.
    Responsiivinen design mobiileille, tableteille ja pöytäkoneille.
    - vs
*/

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

html,
body {
  height: 100%;
}

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #000000;
  background: #469293;
  background: linear-gradient(
    184deg,
    rgba(70, 146, 147, 1) 0%,
    rgba(41, 100, 113, 1) 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

/* Otsikko - Mobiili ensin */
header {
  background-color: #296471;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  gap: 0;
}

.logo-container {
  background-color: #1f4a52;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
  margin: 0;
}

header img {
  height: 50px;
  width: auto;
  max-width: 120px;
  display: block;
}

.title-container {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

header h1 {
  color: #fff;
  font-size: 1.5em;
  margin: 0;
  white-space: nowrap;
}

.menu-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  flex-shrink: 0;
}

/* Navigaation valikoiden avaus/sulkemisen painike */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Navigaatio - Mobiili ensin */
header nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #296471;
  flex-direction: column;
  gap: 0;
  padding: 15px 20px;
  z-index: 1000;
  border-top: 1px solid #1f4a52;
}

header nav.active {
  display: flex;
}

header nav a,
header nav span {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  white-space: nowrap;
  display: block;
  padding: 10px 0;
  cursor: pointer;
}

header nav a:hover {
  color: #51a2a3;
  text-decoration: none;
}

header nav span {
  font-size: 0.95em;
  font-weight: normal;
  padding: 10px 0;
}

@media screen and (min-width: 600px) {
  header nav {
    display: flex !important;
    position: static;
    background-color: transparent;
    border: none;
    gap: 15px;
    align-items: center;
    padding: 0;
    flex-direction: row;
  }

  header nav.active {
    display: flex !important;
    position: static;
    background-color: transparent;
    border: none;
  }

  header nav a,
  header nav span {
    display: inline-block !important;
    padding: 0 5px !important;
  }

  .menu-toggle {
    display: none;
  }
}

/* Päävalta */
main {
  flex: 1;
  padding: 20px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Taulukko - Responsiivinen */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

main table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  font-size: 1em;
}

main table th,
main table td {
  padding: 12px 15px;
  text-align: left;
  word-break: break-word;
}

main table th {
  background-color: #296471;
  color: #fff;
  font-weight: bold;
}

main table tr:hover {
  background-color: #f0f0f0;
}

table tr.unhandled {
  background-color: #ff9292;
}

table tr.handled {
  background-color: #a5fda5;
}

/* Alatunniste */
footer {
  text-align: center;
  padding: 20px 15px;
  background-color: #296471;
  color: #fff;
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}

footer p {
  margin: 0;
  color: #fff;
  font-size: 0.95em;
}

/* Lomakkeen tyylit - Mobiili ensin */
form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.5em;
}

h2 {
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.3em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

h3 {
  color: #296471;
  margin-bottom: 15px;
  font-size: 1.1em;
}

label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  font-size: 0.95em;
}

/* Syöttökentät */
.txfield,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 8px;
}

.txfield:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #51a2a3;
  box-shadow: 0 0 5px rgba(81, 162, 163, 0.5);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Valintaruudut ja radiopainikkeet */
input[type="radio"],
input[type="checkbox"] {
  margin-right: 8px;
  margin-top: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  vertical-align: middle;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  display: inline;
  margin-top: 0;
  margin-left: 5px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
}

/* Painikkeet */
.button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  text-decoration: none;
  background-color: #51a2a3;
  border: 2px solid #51a2a3;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  margin-top: 15px;
  margin-right: 10px;
}

.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: #478e8f;
  border-color: #478e8f;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button:active,
input[type="submit"]:active,
input[type="button"]:active {
  transform: translateY(0);
}

input[type="submit"].button {
  width: 100%;
  font-size: 16px;
}

a {
  color: #2c9173;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #1a5a4d;
  text-decoration: underline;
}

p {
  margin: 15px 0;
  color: #ffffff;
  line-height: 1.6;
}

/* Scrollbaarin tyylitys */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background-color: #51a2a3;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #296471;
}

/* Lomakkeen navigaatio */
.form-navigation {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.form-navigation p {
  color: #fff;
  margin-bottom: 10px;
  font-size: 0.95em;
}

.form-navigation a {
  color: #fff;
  transition: color 0.3s;
}

.form-navigation a:hover {
  color: #51a2a3;
  text-decoration: none;
}

.form-navigation span.selected {
  color: #51a2a3;
  font-weight: bold;
}

.form-navigation span.separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
}

/* Kirjautumislomake */
.login-form {
  max-width: 400px;
}

/* Responsiiviset mediakyselyt - Mobiili ensin */

/* Tablet ja pienet näytöt (600px ja yli) */
@media screen and (min-width: 600px) {
  .logo-container {
    padding: 15px 25px;
  }

  .title-container {
    padding: 15px 30px;
  }

  header h1 {
    font-size: 1.8em;
  }

  .menu-container {
    padding: 15px 30px;
  }

  main {
    padding: 30px;
  }

  form {
    padding: 30px 25px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.4em;
  }

  .txfield,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    font-size: 15px;
  }

  .button,
  input[type="submit"],
  input[type="button"] {
    font-size: 16px;
    padding: 12px 35px;
  }

  input[type="submit"].button {
    width: auto;
    min-width: 150px;
  }

  .field-config {
    grid-template-columns: 1fr 1fr;
  }
}

/* Keskikokoiset näytöt (768px ja yli) */
@media screen and (min-width: 768px) {
  .logo-container {
    padding: 15px 30px;
  }

  .title-container {
    padding: 15px 35px;
  }

  header h1 {
    font-size: 2em;
  }

  .menu-container {
    padding: 15px 35px;
  }

  main {
    padding: 40px;
  }

  form {
    padding: 35px 30px;
  }

  h1 {
    font-size: 2em;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.3em;
  }

  label {
    margin-top: 15px;
  }

  .button,
  input[type="submit"],
  input[type="button"] {
    font-size: 17px;
    padding: 13px 40px;
  }

  input[type="submit"].button {
    width: 100%;
  }

  .field-buttons {
    gap: 15px;
  }

  .login-form {
    max-width: 450px;
  }
}

/* Suuret näytöt ja suuremmat (1024px ja yli) */
@media screen and (min-width: 1024px) {
  body {
    padding: 0;
  }

  .logo-container {
    padding: 15px 40px;
  }

  .title-container {
    padding: 15px 40px;
  }

  header h1 {
    font-size: 2.2em;
  }

  .menu-container {
    padding: 15px 40px;
  }

  main {
    padding: 50px;
    max-width: 1200px;
  }

  form {
    padding: 40px 35px;
    max-width: 900px;
  }

  h1 {
    font-size: 2.2em;
  }

  h2 {
    font-size: 1.7em;
  }

  h3 {
    font-size: 1.4em;
  }

  .field-config {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.form-builder {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-builder h3 {
  color: #296471;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #296471;
  font-size: 0.95em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #51a2a3;
  outline: none;
}

.form-group small {
  display: block;
  color: #666;
  margin-top: 5px;
  font-size: 0.9em;
}

.field-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.field-buttons button {
  background: #469293;
  color: #fff;
  border: 2px solid #469293;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s;
}

.field-buttons button:hover {
  background: #296471;
  border-color: #296471;
}

.form-preview {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 20px;
  min-height: 200px;
}

.field-item {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #469293;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.field-item .field-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.field-item button {
  background: #ff6b6b;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.3s;
}

.field-item button.move-up,
.field-item button.move-down {
  background: #469293;
}

.field-item button:hover {
  opacity: 0.8;
}

.field-config {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.field-config input[type="text"],
.field-config select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  box-sizing: border-box;
}

.save-button {
  background: #28a745;
  color: #fff;
  border: 2px solid #28a745;
  padding: 12px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 100%;
}

.save-button:hover {
  background: #218838;
  border-color: #218838;
}

.alert {
  padding: 15px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border-left: 4px solid;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-left-color: #28a745;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border-left-color: #dc3545;
}

.options-builder {
  margin-top: 12px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 4px;
}

.options-builder input {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  box-sizing: border-box;
}

.add-option-btn {
  background: #469293;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.add-option-btn:hover {
  background: #296471;
}

/* Responsiiviset mediakyselyt lomakeelementeille */
@media screen and (min-width: 600px) {
  .field-config {
    grid-template-columns: 1fr 1fr;
  }

  .save-button {
    width: auto;
    min-width: 120px;
  }
}

@media screen and (min-width: 768px) {
  .field-config {
    grid-template-columns: 1fr 1fr;
  }

  .field-item .field-controls {
    position: static;
    display: flex;
    gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
}

/* Error.php tyylit */
.error-page-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.error-container {
  padding: 40px 20px;
  max-width: 600px;
}

.error-icon {
  font-size: 80px;
  color: #ff9292;
  margin-bottom: 20px;
}

.error-title {
  font-size: 3.5em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.error-code {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-family: 'Courier New', Courier, monospace;
}

.error-message {
  font-size: 1.3em;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 25px;
  border-left: 4px solid #ff9292;
  border-radius: 4px;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #51a2a3;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  border: 2px solid #51a2a3;
  font-size: 1em;
}

.error-button:hover {
  background-color: #478e8f;
  border-color: #478e8f;
  transform: translateY(-2px);
}

.error-button-secondary {
  background-color: transparent;
  color: #51a2a3;
  border: 2px solid #51a2a3;
}

.error-button-secondary:hover {
  background-color: rgba(81, 162, 163, 0.1);
  color: #fff;
}

@media screen and (max-width: 600px) {
  .error-title {
    font-size: 2.5em;
  }

  .error-icon {
    font-size: 60px;
  }

  .error-message {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .error-actions {
    flex-direction: column;
  }

  .error-button {
    width: 100%;
  }
}

/* Support.php tyylit */
.support-container {
  max-width: 900px;
  margin: 0 auto;
}

.support-intro {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #51a2a3;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 40px;
}

.support-intro p {
  color: #fff;
  margin: 10px 0;
  line-height: 1.7;
}

.support-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.admin-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.admin-icon {
  font-size: 48px;
  color: #51a2a3;
  margin-bottom: 15px;
}

.admin-name {
  font-size: 1.3em;
  font-weight: bold;
  color: #296471;
  margin-bottom: 8px;
}

.admin-role {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}

.admin-email-section {
  border-top: 2px solid #eee;
  padding-top: 15px;
}

.admin-email-label {
  font-size: 0.85em;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.admin-email {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-email a {
  color: #51a2a3;
  font-weight: bold;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s;
}

.admin-email a:hover {
  color: #296471;
  text-decoration: underline;
}

.admin-email i {
  color: #51a2a3;
  font-size: 1.1em;
}

.no-admins-message {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff9292;
  padding: 20px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
}

.support-back-link {
  margin-top: 40px;
  text-align: center;
}

.support-back-link a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #51a2a3;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  border: 2px solid #51a2a3;
}

.support-back-link a:hover {
  background-color: #478e8f;
  border-color: #478e8f;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .support-admin-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .admin-card {
    padding: 20px;
  }

  .support-intro {
    padding: 15px;
  }
}

/* Guide.php tyylit */
.guide-container {
  max-width: 900px;
  margin: 0 auto;
}

.guide-intro {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #51a2a3;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.guide-intro p {
  color: #fff;
  margin: 10px 0;
  line-height: 1.7;
}

.guide-toc {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.guide-toc h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.guide-toc ul {
  list-style: none;
  padding: 0;
}

.guide-toc li {
  margin: 8px 0;
}

.guide-toc a {
  color: #51a2a3;
  text-decoration: none;
  transition: color 0.3s;
}

.guide-toc a:hover {
  color: #7cc5c6;
}

details {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
}

summary {
  background-color: #296471;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: background-color 0.3s;
}

summary:hover {
  background-color: #1f4a52;
}

summary i {
  transition: transform 0.3s;
  font-size: 1.2em;
}

details[open] summary i {
  transform: rotate(180deg);
}

details[open] summary {
  border-bottom: 2px solid #51a2a3;
}

.guide-content {
  padding: 25px;
  color: #333;
  line-height: 1.8;
}

.guide-content h4 {
  color: #296471;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.guide-content h4:first-child {
  margin-top: 0;
}

.guide-content p {
  margin: 12px 0;
  color: #333;
}

.guide-content ul,
.guide-content ol {
  margin: 15px 0 15px 25px;
  color: #333;
}

.guide-content li {
  margin: 8px 0;
}

.guide-content strong {
  color: #296471;
}

.guide-content em {
  color: #51a2a3;
  font-style: italic;
}

.guide-highlight {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 12px 15px;
  margin: 15px 0;
  border-radius: 3px;
  color: #856404;
}

.guide-highlight i {
  margin-right: 8px;
}

.guide-back-link {
  margin-top: 40px;
  text-align: center;
}

.guide-back-link a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #51a2a3;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  border: 2px solid #51a2a3;
}

.guide-back-link a:hover {
  background-color: #478e8f;
  border-color: #478e8f;
  transform: translateY(-2px);
}

.guide-section-title {
  color: #296471;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #51a2a3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-section-title i {
  color: #51a2a3;
  font-size: 1.3em;
}

@media screen and (max-width: 768px) {
  .guide-container {
    padding: 0;
  }

  summary {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .guide-content {
    padding: 20px;
  }

  .guide-toc {
    padding: 15px;
  }
}