@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Questrial&display=swap');


* {
    box-sizing: border-box;
}

body {
    background-color: #2c3e50;
    display: flex;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Lato', sans-serif;
    flex-direction: column;
    
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}

button {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 10px 0;
}   
button:hover {
    background: #2980b9;
}

a {
    color: #fff;
}

a:hover {
    text-decoration: underline;
}

.container {
    margin: 10px;

    max-width: 700px;

}

.scriptureInput {
    width: 500px;
    margin: 10px 0;
}

.output {
    color: #fff;
}

.bookSuggestions {
    color: #fff;
}

.suggestion {
    padding: 8px;
    cursor: pointer;
}
.suggestion:hover {
    background-color: #f0f0f0;
    color: #000;
}
.book-details {
    color: #777;
    font-size: 0.85em;
}
.spacer-bottom {
    height: 50px; /* Adjust the height as needed */
}
h1 {
    color: #fff;
}
p {
    color: #ddd;
}

em {
    font-style: italic;
}

.suggestion.highlighted {
    background-color: #e5e5e5;
    color: #000;
}

.outputDiv {
    margin: 20px 0;
}


/* The "Copied!" message (hidden by default) */
.output.copied::after {
  content: "Copied!";
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
  color: green;
  font-size: 0.9em;
  opacity: 0;
  animation: fadeout 1.5s forwards;
}

/* Fade-out animation */
@keyframes fadeout {
  0%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}


