/* ==========================================================================
   VerseLocker Base Theme Styles
   ========================================================================== */

body,
button,
input,
select,
textarea {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: var(--font-family-heading);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-tight);
}

a{
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
}

input,
textarea {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  /* Removing the inner shadow, rounded corners on iOS inputs */
}

button,
input[type="button"],
input[type="reset"] {
  border: none;
  color: var(--color-text-inverse);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 12px 24px;
  text-transform: none;
  text-decoration: none;
  -webkit-appearance: button;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  -webkit-box-shadow: 0 4px 15px rgba(0, 140, 186, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 15px rgba(0, 140, 186, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 140, 186, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

button:hover, button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  outline: none;
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary-light) 100%);
  color: var(--color-text-inverse);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 140, 186, 0.35), 0 3px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 6px 20px rgba(0, 140, 186, 0.35), 0 3px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 20px rgba(0, 140, 186, 0.35), 0 3px 6px rgba(0, 0, 0, 0.15);
}

.editverse:hover, .editverse:focus, .editverse:active {
  background-color: transparent;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="date"],
select,
textarea {
  color: var(--color-text-secondary);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-md);
  -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -moz-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -o-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -ms-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
select:hover,
textarea:hover {
  border-color: #9ca3af;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  color: #111;
  border-color: var(--color-primary-light);
  -webkit-box-shadow: 0 0 0 3px rgba(0, 140, 186, 0.15);
  -moz-box-shadow: 0 0 0 3px rgba(0, 140, 186, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 140, 186, 0.15);
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="date"] {
  padding: 8px var(--space-sm);
  font-size: var(--font-size-md);
  color: var(--color-text-primary);
}

select {
  padding: 8px 10px;
  width: 98%;
}

input:focus,
textarea:focus {
  outline: 0;
}

textarea {
  overflow: auto;
  padding: 8px 10px;
  vertical-align: top;
  width: 98%;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
3.3 Table
--------------------------------------------------------------*/
table {
  background-color: transparent;
  border-spacing: 0;
  border-collapse: collapse;
  max-width: 100%;
  margin-bottom: 1.5em;
  width: 98%;
}

td,
th {
  padding: 0;
}


table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  border-top: 1px solid var(--color-border-light);
  line-height: 1.42857143;
  padding: 8px;
  vertical-align: top;
}

table > thead > tr > th {
  border-bottom: 2px solid var(--color-border-light);
  vertical-align: bottom;
}

table > caption + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > th,
table > thead:first-child > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

table > tbody + tbody {
  border-top: 2px solid var(--color-border-light);
}

table > caption {
  color: var(--color-text-muted);
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
}

table table {
  background-color: var(--color-bg-primary);
}



p {
  margin-bottom: 1.5em;
}

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

p.lead {
  font-weight: 700;
}
