/* line 1, app/assets/stylesheets/components/admin.scss */
.admin-comment {
  margin: 0;
  color: grey;
  font-size: 80%;
  font-style: italic;
  text-wrap: wrap;
}

/* line 8, app/assets/stylesheets/components/admin.scss */
.admin-comment ul {
  margin: 8px 0;
}

/* line 12, app/assets/stylesheets/components/admin.scss */
.btn {
  width: 100%;
  padding: 10px 50px;
  background-color: #d4d4d4;
  border-radius: 5px;
  text-decoration: none;
  border-width: 1px;
}

/* line 21, app/assets/stylesheets/components/admin.scss */
.btn-delete {
  background-color: #ff4d4d;
  width: auto;
  display: inline-block;
}

/* line 27, app/assets/stylesheets/components/admin.scss */
.btn-update {
  background-color: #4CAF50;
  color: white;
}

/* line 31, app/assets/stylesheets/components/admin.scss */
.btn-update:hover {
  background-color: #388E3C;
}

/* line 36, app/assets/stylesheets/components/admin.scss */
.btn-cancel {
  background-color: #e0e0e0;
  color: #333;
}

/* line 42, app/assets/stylesheets/components/admin.scss */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* line 53, app/assets/stylesheets/components/admin.scss */
.modal-box {
  background: var(--background, white);
  border: 1px solid var(--ui-color, #ccc);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* line 62, app/assets/stylesheets/components/admin.scss */
.modal-box h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
}

/* line 67, app/assets/stylesheets/components/admin.scss */
.modal-box p {
  margin: 0 0 1.25rem 0;
  font-size: 0.9rem;
  color: var(--comment-color, #666);
  line-height: 1.4;
}

/* line 75, app/assets/stylesheets/components/admin.scss */
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* line 81, app/assets/stylesheets/components/admin.scss */
.modal-actions .btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* line 89, app/assets/stylesheets/components/admin.scss */
a.btn-help {
  color: #4646fd;
  display: inline-block;
  padding: 9px;
}

/* line 93, app/assets/stylesheets/components/admin.scss */
a.btn-help:hover {
  color: #4646fd;
  background-color: #fff;
}

/* line 99, app/assets/stylesheets/components/admin.scss */
.admin-root-title {
  margin-bottom: 45px;
  text-align: center;
}

/* line 104, app/assets/stylesheets/components/admin.scss */
.last_edited, .edit_timestamp {
  font-style: italic;
  font-size: 80%;
  color: grey;
  margin-left: 25px;
}

/* line 111, app/assets/stylesheets/components/admin.scss */
.edit_timestamp {
  white-space: nowrap;
}

@media (max-width: 700px) {
  /* line 116, app/assets/stylesheets/components/admin.scss */
  .song-item {
    gap: 0.15rem;
  }
  /* line 120, app/assets/stylesheets/components/admin.scss */
  .edit_timestamp {
    display: none;
  }
}

/* line 126, app/assets/stylesheets/components/admin.scss */
.requires-review-changed {
  color: green;
}

/* line 128, app/assets/stylesheets/components/admin.scss */
.requires-review-changed:hover {
  color: lightgreen;
}

/* line 133, app/assets/stylesheets/components/admin.scss */
.requires-review-duplicate {
  color: red;
}

/* line 135, app/assets/stylesheets/components/admin.scss */
.requires-review-duplicate:hover {
  color: lightred;
}

/* line 140, app/assets/stylesheets/components/admin.scss */
.edit_song_link, .remove_song_link {
  padding: 4px 2px;
  display: block;
}

/* line 145, app/assets/stylesheets/components/admin.scss */
.new-song-btn, .new-book-btn {
  text-align: right;
  margin: 15px 0px;
}

/* line 150, app/assets/stylesheets/components/admin.scss */
.new_song_link, .new_book_link {
  padding: 10px 10px;
  display: inline;
  border: 1px solid grey;
  border-radius: 6px;
  background: palegreen;
}

/* line 156, app/assets/stylesheets/components/admin.scss */
.new_song_link:hover, .new_book_link:hover {
  background: forestgreen;
}

/* line 161, app/assets/stylesheets/components/admin.scss */
.admin_table {
  width: 100%;
}

/* line 163, app/assets/stylesheets/components/admin.scss */
.admin_table td {
  padding: 0;
}

/* line 168, app/assets/stylesheets/components/admin.scss */
.flash_link {
  color: #4646fd;
}

/* line 171, app/assets/stylesheets/components/admin.scss */
.admin-book-form {
  padding: 1rem;
  font-family: sans-serif;
}

/* line 176, app/assets/stylesheets/components/admin.scss */
.search-form {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 182, app/assets/stylesheets/components/admin.scss */
.index_search {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid var(--ui-color);
  outline: none;
  transition: border-color 0.15s;
}

/* line 191, app/assets/stylesheets/components/admin.scss */
.index_search:focus {
  border-color: var(--link-color);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}

/* line 197, app/assets/stylesheets/components/admin.scss */
.btn_clear_search {
  cursor: pointer;
  padding: 0 0.5rem;
  font-size: 1.5rem;
  color: var(--comment-color);
  user-select: none;
}

/* line 205, app/assets/stylesheets/components/admin.scss */
.songs-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

/* line 212, app/assets/stylesheets/components/admin.scss */
.songs-search-container,
.book-songs-container {
  flex: 1;
  min-width: 280px;
  padding: 1rem;
  border-radius: 8px;
  background: var(--background);
  border: 1px solid var(--ui-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* line 223, app/assets/stylesheets/components/admin.scss */
.songs, .book-songs {
  max-height: 60vh;
  overflow-y: auto;
  margin-top: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--ui-color) transparent;
}

/* line 232, app/assets/stylesheets/components/admin.scss */
.songs::-webkit-scrollbar, .book-songs::-webkit-scrollbar {
  width: 6px;
}

/* line 235, app/assets/stylesheets/components/admin.scss */
.songs::-webkit-scrollbar-track, .book-songs::-webkit-scrollbar-track {
  background: transparent;
}

/* line 238, app/assets/stylesheets/components/admin.scss */
.songs::-webkit-scrollbar-thumb, .book-songs::-webkit-scrollbar-thumb {
  background-color: var(--ui-color);
  border-radius: 3px;
}

/* line 244, app/assets/stylesheets/components/admin.scss */
.song-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.25rem 0;
  padding: 0.3rem 0.25rem;
  border-bottom: 1px dashed var(--ui-color);
  gap: 0.5rem;
}

/* line 253, app/assets/stylesheets/components/admin.scss */
.song-item > *:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 261, app/assets/stylesheets/components/admin.scss */
.song-item button {
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  background-color: var(--link-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* line 271, app/assets/stylesheets/components/admin.scss */
.song-item button:hover {
  filter: brightness(0.9);
}

/* line 275, app/assets/stylesheets/components/admin.scss */
.songs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: var(--text);
}

/* line 282, app/assets/stylesheets/components/admin.scss */
.language-filter {
  display: flex;
  flex-direction: column;
}

/* line 287, app/assets/stylesheets/components/admin.scss */
.language-filter label {
  display: flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

/* line 298, app/assets/stylesheets/components/admin.scss */
.language-filter label:hover {
  background: #d6e4ff;
}

/* line 302, app/assets/stylesheets/components/admin.scss */
.language-filter input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* line 308, app/assets/stylesheets/components/admin.scss */
button.book-langauge-filter {
  height: 24px;
  width: 24px;
  background: none;
  border: none;
  padding: 0;
  color: var(--ui-color);
  fill: var(--ui-color);
  z-index: 10;
}

/* line 318, app/assets/stylesheets/components/admin.scss */
button.book-langauge-filter svg {
  height: 100%;
  fill: currentColor;
}

/* line 323, app/assets/stylesheets/components/admin.scss */
button.book-langauge-filter:hover {
  cursor: pointer;
}

/* line 328, app/assets/stylesheets/components/admin.scss */
.analytics-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* line 334, app/assets/stylesheets/components/admin.scss */
.analytics-subtitle {
  color: var(--comment-color);
  font-style: italic;
  margin-bottom: 1rem;
}

/* line 340, app/assets/stylesheets/components/admin.scss */
.analytics-row {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--ui-color);
  transition: background 0.15s;
}

/* line 347, app/assets/stylesheets/components/admin.scss */
.analytics-row:last-child {
  border-bottom: none;
}

/* line 351, app/assets/stylesheets/components/admin.scss */
.analytics-row:hover {
  background: var(--index-row-bg, transparent);
}

/* line 356, app/assets/stylesheets/components/admin.scss */
.analytics-rank {
  width: 30px;
  color: var(--comment-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* line 363, app/assets/stylesheets/components/admin.scss */
.analytics-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--title);
}

/* line 371, app/assets/stylesheets/components/admin.scss */
.analytics-title a {
  color: var(--link-color);
  text-decoration: none;
}

/* line 375, app/assets/stylesheets/components/admin.scss */
.analytics-title a:hover {
  text-decoration: underline;
}

/* line 381, app/assets/stylesheets/components/admin.scss */
.analytics-lang {
  display: inline-block;
  background: var(--ui-color);
  color: var(--text);
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin: 0 0.75rem;
}

/* line 392, app/assets/stylesheets/components/admin.scss */
.analytics-count {
  font-weight: bold;
  color: var(--text);
  flex-shrink: 0;
  margin-left: auto;
  min-width: 40px;
  text-align: right;
}

/* line 401, app/assets/stylesheets/components/admin.scss */
.analytics-loading, .analytics-error, .analytics-empty {
  text-align: center;
  padding: 2rem;
  color: var(--comment-color);
}

/* line 408, app/assets/stylesheets/components/admin.scss */
body.css-night .analytics-row {
  border-bottom-color: #333;
}

/* line 411, app/assets/stylesheets/components/admin.scss */
body.css-night .analytics-row:hover {
  background: var(--index-row-bg, rgba(255, 255, 255, 0.03));
}

@media (max-width: 700px) {
  /* line 418, app/assets/stylesheets/components/admin.scss */
  .analytics-row {
    flex-wrap: wrap;
    padding: 0.65rem 0.25rem;
  }
  /* line 423, app/assets/stylesheets/components/admin.scss */
  .analytics-lang {
    margin: 0;
  }
}

/* line 429, app/assets/stylesheets/components/admin.scss */
body.css-night .btn-update {
  background-color: var(--chord);
  color: black;
}

/* line 433, app/assets/stylesheets/components/admin.scss */
body.css-night .btn-update:hover {
  filter: brightness(0.9);
}

/* line 1, app/assets/stylesheets/components/admin_books.scss */
.admin-books-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* line 8, app/assets/stylesheets/components/admin_books.scss */
.admin-books-search-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}

/* line 13, app/assets/stylesheets/components/admin_books.scss */
.admin-books-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--comment-color);
  pointer-events: none;
}

/* line 22, app/assets/stylesheets/components/admin_books.scss */
.admin-books-search {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-size: 1rem;
  border: 1px solid var(--ui-color);
  border-radius: 10px;
  background: var(--background);
  color: var(--text);
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* line 34, app/assets/stylesheets/components/admin_books.scss */
.admin-books-search::placeholder {
  color: var(--comment-color);
}

/* line 38, app/assets/stylesheets/components/admin_books.scss */
.admin-books-search:focus {
  border-color: var(--link-color);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* line 45, app/assets/stylesheets/components/admin_books.scss */
.admin-books-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--comment-color);
  font-size: 0.95rem;
}

/* line 53, app/assets/stylesheets/components/admin_books.scss */
.admin-books-cards {
  display: flex;
  flex-direction: column;
}

/* line 59, app/assets/stylesheets/components/admin_books.scss */
.admin-book-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ui-color);
  transition: background 0.15s;
}

/* line 67, app/assets/stylesheets/components/admin_books.scss */
.admin-book-card:last-child {
  border-bottom: none;
}

/* line 71, app/assets/stylesheets/components/admin_books.scss */
.admin-book-card:hover {
  background: var(--index-row-bg, transparent);
}

/* line 76, app/assets/stylesheets/components/admin_books.scss */
.admin-book-info {
  flex: 1;
  min-width: 0;
}

/* line 81, app/assets/stylesheets/components/admin_books.scss */
.admin-book-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 90, app/assets/stylesheets/components/admin_books.scss */
.admin-book-meta {
  font-size: 0.82rem;
  color: var(--comment-color);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* line 100, app/assets/stylesheets/components/admin_books.scss */
.admin-book-system-badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--chord);
  color: white;
  line-height: 1.6;
}

/* line 112, app/assets/stylesheets/components/admin_books.scss */
.admin-book-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* line 120, app/assets/stylesheets/components/admin_books.scss */
.admin-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid var(--ui-color);
  border-radius: 20px;
  background: transparent;
  color: var(--link-color);
  cursor: pointer;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

/* line 135, app/assets/stylesheets/components/admin_books.scss */
.admin-book-btn:hover {
  background: var(--ui-color);
  border-color: var(--link-color);
}

/* line 140, app/assets/stylesheets/components/admin_books.scss */
.admin-book-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* line 148, app/assets/stylesheets/components/admin_books.scss */
.admin-book-copied {
  font-size: 0.72rem;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  animation: admin-book-copied-fade 1.5s ease forwards;
  white-space: nowrap;
}

@keyframes admin-book-copied-fade {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* line 167, app/assets/stylesheets/components/admin_books.scss */
body.css-night .admin-book-card {
  border-bottom-color: #333;
}

/* line 170, app/assets/stylesheets/components/admin_books.scss */
body.css-night .admin-book-card:hover {
  background: var(--index-row-bg, rgba(255, 255, 255, 0.03));
}

/* line 175, app/assets/stylesheets/components/admin_books.scss */
body.css-night .admin-books-search {
  background: var(--index-row-bg, #1a1a2e);
  border-color: #444;
}

/* line 179, app/assets/stylesheets/components/admin_books.scss */
body.css-night .admin-books-search:focus {
  border-color: var(--link-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}

/* line 185, app/assets/stylesheets/components/admin_books.scss */
body.css-night .admin-book-btn {
  border-color: #444;
}

/* line 188, app/assets/stylesheets/components/admin_books.scss */
body.css-night .admin-book-btn:hover {
  background: #333;
}

/* line 193, app/assets/stylesheets/components/admin_books.scss */
body.css-night .admin-book-copied {
  background: rgba(34, 197, 94, 0.15);
}

@media (max-width: 700px) {
  /* line 200, app/assets/stylesheets/components/admin_books.scss */
  .admin-book-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  /* line 206, app/assets/stylesheets/components/admin_books.scss */
  .admin-book-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  /* line 213, app/assets/stylesheets/components/admin_books.scss */
  .admin-book-btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }
}

/* line 1, app/assets/stylesheets/components/custom_books.scss */
.dragging {
  opacity: 0.5;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 7, app/assets/stylesheets/components/custom_books.scss */
.custom-book-row {
  display: flex;
  height: 28px;
  line-height: 28px;
}

/* line 12, app/assets/stylesheets/components/custom_books.scss */
.custom-book-row:nth-child(even) {
  background-color: var(--index-row-bg);
}

/* line 17, app/assets/stylesheets/components/custom_books.scss */
.custom-book-index {
  display: inline-block;
  padding: 0 10px;
}

/* line 22, app/assets/stylesheets/components/custom_books.scss */
.custom-book-remove-song-btn {
  margin-left: auto;
  padding-right: 8px;
  cursor: pointer;
}

/* line 28, app/assets/stylesheets/components/custom_books.scss */
.custom_book_search_list input {
  margin: 15px auto;
  display: block;
  line-height: 26px;
  padding: 0 8px;
  border-radius: 4px;
  border: 1px solid lightgray;
}

/* line 37, app/assets/stylesheets/components/custom_books.scss */
.custom_book_search_results {
  max-height: 200px;
  overflow-y: scroll;
}

/* line 42, app/assets/stylesheets/components/custom_books.scss */
.custom_book_search_list {
  border: 1px solid lightgray;
  border-radius: 4px;
  margin-bottom: 60px;
}

/* line 48, app/assets/stylesheets/components/custom_books.scss */
.custom-book-song-title {
  cursor: pointer;
}

/* line 53, app/assets/stylesheets/components/custom_books.scss */
.admin-book-form {
  max-width: 1400px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

@media (max-width: 700px) {
  /* line 53, app/assets/stylesheets/components/custom_books.scss */
  .admin-book-form {
    padding: 0;
  }
}

/* line 64, app/assets/stylesheets/components/custom_books.scss */
.book-form-title {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid var(--ui-color);
}

/* line 73, app/assets/stylesheets/components/custom_books.scss */
.song-count {
  font-size: 0.85rem;
  color: var(--comment-color);
  font-weight: normal;
}

/* line 79, app/assets/stylesheets/components/custom_books.scss */
.songs-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--comment-color);
  font-size: 0.9rem;
}

/* line 87, app/assets/stylesheets/components/custom_books.scss */
.btn-icon {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s, color 0.15s;
}

/* line 104, app/assets/stylesheets/components/custom_books.scss */
.btn-icon svg {
  display: block;
}

/* line 109, app/assets/stylesheets/components/custom_books.scss */
.btn-add {
  background-color: var(--link-color);
  color: white;
}

/* line 113, app/assets/stylesheets/components/custom_books.scss */
.btn-add:hover {
  filter: brightness(0.9);
}

/* line 118, app/assets/stylesheets/components/custom_books.scss */
.btn-remove {
  background-color: transparent;
  color: var(--comment-color);
  border: 1px solid var(--ui-color);
}

/* line 123, app/assets/stylesheets/components/custom_books.scss */
.btn-remove:hover {
  background-color: #ff4d4d;
  color: white;
  border-color: #ff4d4d;
}

/* line 130, app/assets/stylesheets/components/custom_books.scss */
.btn-icon.btn-added {
  background-color: var(--ui-color);
  color: var(--comment-color);
  cursor: default;
  pointer-events: none;
}

/* line 140, app/assets/stylesheets/components/custom_books.scss */
.book-song-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--link-color);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  margin-right: 0.35rem;
  flex-shrink: 0;
}

/* line 155, app/assets/stylesheets/components/custom_books.scss */
.book-song-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 162, app/assets/stylesheets/components/custom_books.scss */
.drag-handle {
  cursor: grab;
  color: var(--comment-color);
  margin-right: 0.5rem;
  flex-shrink: 0;
  user-select: none;
  display: inline-flex;
  align-items: center;
  padding: 8px 4px;
  margin: -8px -4px;
}

/* line 173, app/assets/stylesheets/components/custom_books.scss */
.drag-handle:active {
  cursor: grabbing;
}

/* line 177, app/assets/stylesheets/components/custom_books.scss */
.drag-handle svg {
  touch-action: none;
}

/* line 182, app/assets/stylesheets/components/custom_books.scss */
.song-item.drag-over {
  border-top: 2px solid var(--link-color);
  border-bottom: 1px dashed var(--ui-color);
}

/* line 187, app/assets/stylesheets/components/custom_books.scss */
.song-item button.btn-added {
  background-color: #6c757d;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 700px) {
  /* line 195, app/assets/stylesheets/components/custom_books.scss */
  .admin-book-form {
    max-width: 100%;
  }
  /* line 199, app/assets/stylesheets/components/custom_books.scss */
  .songs-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  /* line 204, app/assets/stylesheets/components/custom_books.scss */
  .songs-search-container,
.book-songs-container {
    min-width: unset;
    padding: 0.5rem;
  }
  /* line 210, app/assets/stylesheets/components/custom_books.scss */
  .songs, .book-songs {
    max-height: 45vh;
    margin-top: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--ui-color) transparent;
  }
  /* line 217, app/assets/stylesheets/components/custom_books.scss */
  .songs::-webkit-scrollbar, .book-songs::-webkit-scrollbar {
    width: 6px;
  }
  /* line 220, app/assets/stylesheets/components/custom_books.scss */
  .songs::-webkit-scrollbar-track, .book-songs::-webkit-scrollbar-track {
    background: transparent;
  }
  /* line 223, app/assets/stylesheets/components/custom_books.scss */
  .songs::-webkit-scrollbar-thumb, .book-songs::-webkit-scrollbar-thumb {
    background-color: var(--ui-color);
    border-radius: 3px;
  }
  /* line 229, app/assets/stylesheets/components/custom_books.scss */
  .btn-icon {
    width: 30px;
    height: 30px;
  }
  /* line 234, app/assets/stylesheets/components/custom_books.scss */
  .btn-icon svg {
    width: 14px;
    height: 14px;
  }
  /* line 239, app/assets/stylesheets/components/custom_books.scss */
  .book-song-number {
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
    margin-right: 0.15rem;
  }
  /* line 246, app/assets/stylesheets/components/custom_books.scss */
  .song-item {
    padding: 0.3rem 0.15rem;
    min-height: 38px;
    gap: 0.15rem;
    margin: 0.2rem 0;
  }
  /* line 253, app/assets/stylesheets/components/custom_books.scss */
  .book-song-title {
    font-size: 14px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 262, app/assets/stylesheets/components/custom_books.scss */
  .drag-handle {
    padding: 0;
    margin: 0;
  }
  /* line 266, app/assets/stylesheets/components/custom_books.scss */
  .drag-handle svg {
    width: 12px;
    height: 12px;
  }
  /* line 272, app/assets/stylesheets/components/custom_books.scss */
  .song-item.drag-over {
    border-top-width: 3px;
    margin-top: -1px;
  }
  /* line 277, app/assets/stylesheets/components/custom_books.scss */
  .book-form-title {
    font-size: 16px;
  }
  /* line 281, app/assets/stylesheets/components/custom_books.scss */
  .book-title h2 {
    font-size: 1.1rem;
  }
  /* line 285, app/assets/stylesheets/components/custom_books.scss */
  .book-songs-container {
    border-top: 1px solid var(--ui-color);
  }
}

/* line 292, app/assets/stylesheets/components/custom_books.scss */
body.css-night .song-count {
  color: #aaa;
}

/* line 296, app/assets/stylesheets/components/custom_books.scss */
body.css-night .songs-empty {
  color: #aaa;
}

/* line 300, app/assets/stylesheets/components/custom_books.scss */
body.css-night .drag-handle {
  color: #aaa;
}

/* line 304, app/assets/stylesheets/components/custom_books.scss */
body.css-night .song-item.drag-over {
  border-top-color: var(--chord);
}

/* line 308, app/assets/stylesheets/components/custom_books.scss */
body.css-night .book-form-title {
  border-color: #555;
  background-color: #111;
  color: white;
}

/* line 314, app/assets/stylesheets/components/custom_books.scss */
body.css-night .btn-add {
  background-color: var(--chord);
}

/* line 317, app/assets/stylesheets/components/custom_books.scss */
body.css-night .btn-add:hover {
  background-color: #888;
}

/* line 322, app/assets/stylesheets/components/custom_books.scss */
body.css-night .btn-remove {
  color: #aaa;
  border-color: #555;
}

/* line 326, app/assets/stylesheets/components/custom_books.scss */
body.css-night .btn-remove:hover {
  background-color: #ff4d4d;
  color: white;
  border-color: #ff4d4d;
}

/* line 333, app/assets/stylesheets/components/custom_books.scss */
body.css-night .btn-icon.btn-added {
  background-color: #333;
  color: #666;
}

/* line 338, app/assets/stylesheets/components/custom_books.scss */
body.css-night .book-song-number {
  background-color: var(--chord);
  color: black;
}

/* line 1, app/assets/stylesheets/components/maintenance.scss */
.maintenance_mode {
  height: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 1, app/assets/stylesheets/components/nav.scss */
.user_nav {
  text-align: right;
}

/* line 5, app/assets/stylesheets/components/nav.scss */
.sign_in_google {
  width: 200px;
  padding: 0;
  display: inline-block;
  background: none;
  border: none;
}

/* line 11, app/assets/stylesheets/components/nav.scss */
.sign_in_google img {
  width: 100%;
}

/* line 16, app/assets/stylesheets/components/nav.scss */
#sign_out {
  margin-left: 10px;
  padding: 10px;
  background-color: #d4d4d4;
  border-radius: 5px;
  text-decoration: none;
}

/* line 24, app/assets/stylesheets/components/nav.scss */
.book-icon {
  cursor: pointer;
  position: absolute;
  left: 24px;
  top: 22px;
  height: 24px;
  width: 22px;
  border-radius: 2px;
  border-top-left-radius: 6px;
  background-color: var(--ui-color);
}

/* line 35, app/assets/stylesheets/components/nav.scss */
.book-icon > div {
  position: absolute;
  left: -3px;
  top: 2px;
  height: 26px;
  width: 19px;
  border: 2px solid var(--background);
  border-radius: 2px;
  background-color: var(--ui-color);
}

/* line 46, app/assets/stylesheets/components/nav.scss */
.book-icon .book-icon-marker {
  border-color: var(--background);
}

/* line 51, app/assets/stylesheets/components/nav.scss */
.book-icon-close {
  margin-top: -5px;
  margin-left: -5px;
  width: 12px;
  height: 12px;
  background-color: var(--ui-color);
  border: 1px solid var(--background);
  border-radius: 12px;
}

/* line 60, app/assets/stylesheets/components/nav.scss */
.book-icon-close .book-icon-close-x1 {
  height: 10px;
  width: 1px;
  margin-left: 5px;
  margin-top: 1px;
  background-color: var(--background);
  transform: rotate(45deg);
  z-index: 1;
}

/* line 69, app/assets/stylesheets/components/nav.scss */
.book-icon-close .book-icon-close-x2 {
  height: 10px;
  width: 1px;
  background-color: var(--background);
  transform: rotate(-90deg);
  z-index: 2;
}

/* line 1, app/assets/stylesheets/components/settings.scss */
.settings-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* line 7, app/assets/stylesheets/components/settings.scss */
.settings-section {
  background: var(--background);
  border: 1px solid var(--ui-color);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

/* line 14, app/assets/stylesheets/components/settings.scss */
.settings-section h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--comment-color);
  margin: 0 0 12px 0;
  font-weight: 600;
}

/* line 25, app/assets/stylesheets/components/settings.scss */
.lang-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 30, app/assets/stylesheets/components/settings.scss */
.lang-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
}

/* line 39, app/assets/stylesheets/components/settings.scss */
.lang-grid label:hover {
  background: var(--index-row-bg);
}

/* line 43, app/assets/stylesheets/components/settings.scss */
.lang-grid label input[type="checkbox"] {
  accent-color: #007bff;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* line 52, app/assets/stylesheets/components/settings.scss */
.lang-label {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 14px;
}

/* line 60, app/assets/stylesheets/components/settings.scss */
.theme-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 66, app/assets/stylesheets/components/settings.scss */
.theme-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

/* line 72, app/assets/stylesheets/components/settings.scss */
.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 78, app/assets/stylesheets/components/settings.scss */
.theme-toggle .toggle-track {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.25s;
}

/* line 86, app/assets/stylesheets/components/settings.scss */
.theme-toggle .toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s;
}

/* line 99, app/assets/stylesheets/components/settings.scss */
.theme-toggle input:checked + .toggle-track {
  background: #007bff;
}

/* line 102, app/assets/stylesheets/components/settings.scss */
.theme-toggle input:checked + .toggle-track::after {
  transform: translateX(22px);
}

/* line 108, app/assets/stylesheets/components/settings.scss */
.theme-label {
  font-size: 14px;
  color: var(--text);
}

/* line 115, app/assets/stylesheets/components/settings.scss */
.reset-cache-section .reset-cache-info {
  font-size: 13px;
  color: var(--comment-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* line 122, app/assets/stylesheets/components/settings.scss */
.reset-cache-section .reset-cache-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 128, app/assets/stylesheets/components/settings.scss */
.reset-cache-section button {
  padding: 6px 16px;
  color: var(--text);
  background: var(--background);
  border: 1px solid var(--ui-color);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.15s;
}

/* line 138, app/assets/stylesheets/components/settings.scss */
.reset-cache-section button:hover {
  border-color: #007bff;
}

/* line 142, app/assets/stylesheets/components/settings.scss */
.reset-cache-section button:active {
  opacity: 0.7;
}

/* line 147, app/assets/stylesheets/components/settings.scss */
.reset-cache-section .counter {
  font-size: 13px;
  color: var(--comment-color);
}

/* line 155, app/assets/stylesheets/components/settings.scss */
.install-section p {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* line 161, app/assets/stylesheets/components/settings.scss */
.install-section p b {
  color: var(--title);
}

/* line 168, app/assets/stylesheets/components/settings.scss */
.contact-footer {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: var(--comment-color);
}

/* line 174, app/assets/stylesheets/components/settings.scss */
.contact-footer hr {
  border: none;
  border-top: 1px solid var(--ui-color);
  margin-bottom: 12px;
}

/* line 180, app/assets/stylesheets/components/settings.scss */
.contact-footer a {
  color: var(--link-color, #007bff);
}

/* line 186, app/assets/stylesheets/components/settings.scss */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: middle;
  border: 2px solid var(--ui-color);
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 1, app/assets/stylesheets/components/song_app.scss */
.song-app {
  max-width: 380px;
  margin: auto;
  padding: 0 5px;
  text-align: center;
}

/* line 7, app/assets/stylesheets/components/song_app.scss */
.song-app > * {
  text-align: left;
}

/* line 12, app/assets/stylesheets/components/song_app.scss */
.home-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: 40px;
  margin-top: 5px;
  margin-bottom: 28px;
}

/* line 20, app/assets/stylesheets/components/song_app.scss */
.home-title-row .home-title {
  margin: 0;
  flex: 1;
  text-align: center;
}

/* line 26, app/assets/stylesheets/components/song_app.scss */
.home-title-row .home-title-close {
  background: none;
  border: 1px solid var(--ui-color);
  border-radius: 4px;
  color: var(--ui-color);
  font-size: 14px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: -8px;
  transition: color 0.15s, border-color 0.15s;
}

/* line 42, app/assets/stylesheets/components/song_app.scss */
.home-title-row .home-title-close:hover {
  color: #e74c3c;
  border-color: #e74c3c;
}

/* line 48, app/assets/stylesheets/components/song_app.scss */
.home-title-row .home-title-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ui-color);
  border-radius: 4px;
  color: var(--ui-color);
  flex-shrink: 0;
  margin-left: 6px;
  transition: color 0.15s, border-color 0.15s;
}

/* line 61, app/assets/stylesheets/components/song_app.scss */
.home-title-row .home-title-edit:hover {
  color: #007bff;
  border-color: #007bff;
}

/* line 68, app/assets/stylesheets/components/song_app.scss */
.home-title {
  font-size: 1.8em;
  text-align: center;
}

/* line 71, app/assets/stylesheets/components/song_app.scss */
.home-title:hover {
  cursor: pointer;
}

/* line 76, app/assets/stylesheets/components/song_app.scss */
.loading {
  text-align: center;
  opacity: 1;
  animation: fade 2s linear infinite;
  position: fixed;
  width: 100vw;
  left: 0;
  top: 0;
  margin-top: calc(50vh - 20px);
  font-size: 1.2em;
}

@keyframes fade {
  0%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/components/song_display.scss */
div[data-react-class='SongDisplay'] {
  display: initial;
}

/* line 5, app/assets/stylesheets/components/song_display.scss */
.song-container {
  text-align: center;
}

/* line 9, app/assets/stylesheets/components/song_display.scss */
.title-number {
  display: inline-block;
  color: var(--comment-color);
  margin-left: 15px;
  margin-bottom: 15px;
}

/* line 16, app/assets/stylesheets/components/song_display.scss */
.lyrics {
  width: auto;
  margin-left: 20px;
  display: inline-block;
  text-align: left;
  tab-size: 22px;
}

/* line 23, app/assets/stylesheets/components/song_display.scss */
.lyrics .capo {
  user-select: none;
}

/* line 26, app/assets/stylesheets/components/song_display.scss */
.lyrics .transpose-symbol {
  all: unset;
  display: inline-block;
  color: var(--ui-color);
  opacity: 50%;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 25px;
  height: 25px;
}

/* line 39, app/assets/stylesheets/components/song_display.scss */
.lyrics .transpose-symbol > svg {
  width: 100%;
  height: 100%;
  stroke: var(--ui-color);
  fill: var(--ui-color);
}

/* line 46, app/assets/stylesheets/components/song_display.scss */
.lyrics .musical-tie {
  width: 5px;
  display: inline-block;
  position: relative;
  top: 3px;
  left: -2px;
  font-size: 9px;
}

/* line 54, app/assets/stylesheets/components/song_display.scss */
.lyrics .comment, .lyrics .transpose-preset {
  color: var(--comment-color);
  font-size: 90%;
}

/* line 59, app/assets/stylesheets/components/song_display.scss */
.lyrics .transpose-preset {
  display: block;
  padding-right: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 68, app/assets/stylesheets/components/song_display.scss */
.lyrics .song-controls > div {
  display: flex;
  gap: 4px;
  align-items: center;
  color: var(--comment-color);
}

/* line 74, app/assets/stylesheets/components/song_display.scss */
.lyrics .song-controls {
  margin-bottom: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: right;
  display: grid;
  grid-template-columns: 3fr 1fr;
}

/* line 84, app/assets/stylesheets/components/song_display.scss */
.lyrics .transpose-controls {
  grid-column-start: 2;
  grid-row-start: 1;
  flex-direction: row-reverse;
}

/* line 89, app/assets/stylesheets/components/song_display.scss */
.lyrics .chord-word {
  display: inline-block;
  padding-top: 17px;
  height: 17px;
  position: relative;
}

/* line 94, app/assets/stylesheets/components/song_display.scss */
.lyrics .chord-word .chord {
  color: var(--chord);
  white-space: pre;
  position: absolute;
  bottom: 17px;
  font-weight: normal;
  font-style: normal;
}

/* line 102, app/assets/stylesheets/components/song_display.scss */
.lyrics .chord-word::after {
  content: "";
  display: inline-block;
}

/* line 107, app/assets/stylesheets/components/song_display.scss */
.lyrics .bookmark {
  display: none !important;
  position: absolute;
  top: 0px;
  right: 32%;
}

/* line 113, app/assets/stylesheets/components/song_display.scss */
.lyrics .line {
  min-height: 12px;
  vertical-align: bottom;
  white-space: pre-wrap;
}

/* line 118, app/assets/stylesheets/components/song_display.scss */
.lyrics .stanza-number {
  position: absolute;
  margin-left: -25px;
}

/* line 122, app/assets/stylesheets/components/song_display.scss */
.lyrics .stanza-number.with-chords {
  margin-top: 17px;
}

/* line 128, app/assets/stylesheets/components/song_display.scss */
[data-uncopyable-text]::after {
  content: attr(data-uncopyable-text);
}

/* line 138, app/assets/stylesheets/components/song_display.scss */
.show-music-controls {
  position: absolute;
  top: 22px;
  right: 21px;
  width: 30px;
  height: 30px;
}

/* line 146, app/assets/stylesheets/components/song_display.scss */
.show-music-controls svg {
  fill: var(--ui-color);
  fill-rule: evenodd;
  stroke: var(--ui-color);
  height: 30px;
}

/* line 154, app/assets/stylesheets/components/song_display.scss */
.chorus {
  padding-left: 22px;
  tab-size: 0;
}

/* line 159, app/assets/stylesheets/components/song_display.scss */
.share-song {
  position: absolute;
  bottom: 15px;
  right: 20px;
}

/* line 160, app/assets/stylesheets/components/song_display.scss */
.share-song svg {
  fill: var(--ui-color);
  stroke: var(--ui-color);
  height: 30px;
}

/* line 172, app/assets/stylesheets/components/song_display.scss */
.share-song-success {
  position: absolute;
  top: -50px;
  left: -40px;
  border: 1px solid;
  border-radius: 4px;
  padding: 8px 12px;
  opacity: 0;
  z-index: 1000;
}

/* line 183, app/assets/stylesheets/components/song_display.scss */
.fadeOut {
  animation: fadeOut 1.2s ease-out;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* line 193, app/assets/stylesheets/components/song_display.scss */
.tune-selector {
  fill: var(--comment-color);
  color: var(--comment-color);
  font-size: 90%;
  position: relative;
  cursor: pointer;
  text-align: left;
  grid-column-start: 1;
  grid-row-start: 1;
}

/* line 205, app/assets/stylesheets/components/song_display.scss */
.tune-selector svg {
  width: 18px;
  border: 1px solid;
  border-radius: 2px;
  margin-right: 8px;
}

/* line 213, app/assets/stylesheets/components/song_display.scss */
.tune-select-box {
  text-align: left;
  position: absolute;
  background-color: var(--background);
  top: 32px;
  padding: 0px;
  width: 240px;
  z-index: 1050;
  border-radius: 6px;
  border: 1px solid;
  box-shadow: 2px 2px 4px;
  cursor: pointer;
}

/* line 226, app/assets/stylesheets/components/song_display.scss */
.tune-select-box div {
  padding: 12px 0;
  padding-left: 28px;
}

/* line 230, app/assets/stylesheets/components/song_display.scss */
.tune-select-box div + div {
  border-top: 1px solid;
}

/* line 233, app/assets/stylesheets/components/song_display.scss */
.tune-select-box .tune-select:hover {
  font-weight: bold;
}

/* line 237, app/assets/stylesheets/components/song_display.scss */
.selected-tune-check {
  position: absolute;
  left: 9px;
}

/* line 1, app/assets/stylesheets/components/song_form.scss */
.song-form .lyric-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* line 5, app/assets/stylesheets/components/song_form.scss */
.song-form .lyric-form div.form, .song-form .lyric-form div.preview {
  grid-column: span 1;
}

/* line 10, app/assets/stylesheets/components/song_form.scss */
.song-form-textbox {
  min-height: 500px;
  width: 90%;
  height: 98%;
  padding-left: 8px;
  padding-top: 5px;
  border-color: lightgrey;
  border-radius: 6px;
}

/* line 20, app/assets/stylesheets/components/song_form.scss */
.song-form-title, .book-form-title {
  width: 100%;
  padding: 6px;
  font-size: 120%;
  border: 1px solid lightgrey;
  border-radius: 4px;
  background: none;
}

/* line 29, app/assets/stylesheets/components/song_form.scss */
.actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

/* line 37, app/assets/stylesheets/components/song_form.scss */
.actions > * {
  width: 200px;
  box-sizing: border-box;
}

/* line 44, app/assets/stylesheets/components/song_form.scss */
.language-links {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 48, app/assets/stylesheets/components/song_form.scss */
.language-links h2 {
  margin-bottom: 10px;
}

/* line 52, app/assets/stylesheets/components/song_form.scss */
.language-links .linked-song-remove {
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

/* line 60, app/assets/stylesheets/components/song_form.scss */
.language-links .linked-song-remove:hover {
  color: #c00;
}

/* line 65, app/assets/stylesheets/components/song_form.scss */
.language-links .no-links-message {
  color: #888;
  font-style: italic;
  margin: 0;
}

/* line 71, app/assets/stylesheets/components/song_form.scss */
.language-links .admin-comment {
  margin-top: 8px;
}

/* line 1, app/assets/stylesheets/components/song_index.scss */
.index_row {
  all: unset;
  padding: 5px 8px;
  font-size: 120%;
  line-height: 1.1;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

/* line 10, app/assets/stylesheets/components/song_index.scss */
.index_row:focus {
  border: 1px solid #0C79E8;
  border-radius: 3px;
  font-weight: bold;
}

/* line 15, app/assets/stylesheets/components/song_index.scss */
.index_row:hover {
  font-weight: bold;
  cursor: pointer;
  background-color: color-mix(in srgb, var(--index-row-bg) 50%, transparent);
}

/* line 20, app/assets/stylesheets/components/song_index.scss */
.index_row:nth-child(even) {
  background-color: var(--index-row-bg);
}

/* line 25, app/assets/stylesheets/components/song_index.scss */
.index_row_book_index {
  color: #777;
  padding-left: 8px;
}

/* line 30, app/assets/stylesheets/components/song_index.scss */
.index_row_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 36, app/assets/stylesheets/components/song_index.scss */
.create-book-btn {
  text-decoration: none;
  color: var(--link-color);
}

/* line 40, app/assets/stylesheets/components/song_index.scss */
.create-book-btn:hover {
  color: var(--link-color);
  background-color: transparent;
}

/* line 46, app/assets/stylesheets/components/song_index.scss */
.book-edit-btn {
  display: flex;
  align-items: center;
  padding: 4px;
  color: var(--ui-color);
  text-decoration: none;
}

/* line 53, app/assets/stylesheets/components/song_index.scss */
.book-edit-btn svg {
  width: 16px;
  height: 16px;
}

/* line 58, app/assets/stylesheets/components/song_index.scss */
.book-edit-btn:hover {
  color: var(--text);
}

/* line 63, app/assets/stylesheets/components/song_index.scss */
.index_row_tag {
  display: block;
  margin: 4px 0;
  font-size: 14px;
  color: grey;
}

/* line 70, app/assets/stylesheets/components/song_index.scss */
.search-row {
  position: relative;
  margin: 0 auto 10px auto;
}

/* line 75, app/assets/stylesheets/components/song_index.scss */
.search-form {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: fit-content;
}

/* line 81, app/assets/stylesheets/components/song_index.scss */
.search-form .index_search {
  padding: 4px 8px;
  padding-right: 31px;
  width: 240px;
  height: 30px;
  background-color: var(--background);
  color: var(--text);
  border-radius: 2px;
  border: 1px solid #777;
  padding-bottom: 5px;
}

/* line 93, app/assets/stylesheets/components/song_index.scss */
.search-form .btn_clear_search {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 30px;
  padding: 5px 12px;
  color: var(--ui-color);
}

/* line 100, app/assets/stylesheets/components/song_index.scss */
.search-form .btn_clear_search:hover {
  cursor: pointer;
  color: var(--text);
}

/* line 108, app/assets/stylesheets/components/song_index.scss */
.title-list {
  position: relative;
}

/* line 112, app/assets/stylesheets/components/song_index.scss */
.btn-sort {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--ui-color);
}

/* line 121, app/assets/stylesheets/components/song_index.scss */
.btn-sort svg {
  width: 20px;
  height: 20px;
}

/* line 128, app/assets/stylesheets/components/song_index.scss */
.settings-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  fill: var(--ui-color);
}

/* line 134, app/assets/stylesheets/components/song_index.scss */
.settings-btn img {
  width: 100%;
}

/* line 137, app/assets/stylesheets/components/song_index.scss */
.settings-btn:hover {
  cursor: pointer;
}

/* line 142, app/assets/stylesheets/components/song_index.scss */
.home-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  fill: var(--ui-color);
}

/* line 149, app/assets/stylesheets/components/song_index.scss */
.home-btn img {
  width: 100%;
}

/* line 152, app/assets/stylesheets/components/song_index.scss */
.home-btn:hover {
  cursor: pointer;
}

/* line 157, app/assets/stylesheets/components/song_index.scss */
.kabob-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* line 163, app/assets/stylesheets/components/song_index.scss */
.kabob-button,
.kabob-menu {
  font-weight: normal;
}

/* line 168, app/assets/stylesheets/components/song_index.scss */
.kabob-button {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--ui-color);
  display: flex;
  align-items: center;
}

/* line 177, app/assets/stylesheets/components/song_index.scss */
.kabob-button svg {
  width: 20px;
  height: 20px;
}

/* line 182, app/assets/stylesheets/components/song_index.scss */
.kabob-button:hover {
  color: var(--text);
}

/* line 187, app/assets/stylesheets/components/song_index.scss */
.kabob-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--background);
  border: 1px solid var(--ui-color);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
  min-width: 150px;
}

/* line 199, app/assets/stylesheets/components/song_index.scss */
.kabob-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

/* line 209, app/assets/stylesheets/components/song_index.scss */
.kabob-menu-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* line 215, app/assets/stylesheets/components/song_index.scss */
.kabob-menu-item:hover {
  background: var(--ui-color);
  color: var(--background);
}

/* line 220, app/assets/stylesheets/components/song_index.scss */
.kabob-menu-item:first-child {
  border-radius: 4px 4px 0 0;
}

/* line 224, app/assets/stylesheets/components/song_index.scss */
.kabob-menu-item:last-child {
  border-radius: 0 0 4px 4px;
}

/* line 228, app/assets/stylesheets/components/song_index.scss */
.kabob-menu-item.kabob-menu-item-trash svg {
  width: 16px;
  height: 16px;
}

/* line 234, app/assets/stylesheets/components/song_index.scss */
.kabob-copied {
  position: absolute;
  right: 100%;
  top: 0;
  margin-right: 10px;
  padding: 6px 10px;
  background: var(--background);
  border: 1px solid var(--text);
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  animation: fadeOut 1.2s ease-out;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/components/song_print.scss */
.song-print {
  white-space: break-spaces;
}

@media print {
  /* line 6, app/assets/stylesheets/components/song_print.scss */
  .note {
    display: none !important;
  }
}

/* line 10, app/assets/stylesheets/components/song_print.scss */
.note {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
  color: #777;
  margin-bottom: 40px;
}

/* line 21, app/assets/stylesheets/components/song_print.scss */
.note + .note {
  margin-top: -20px;
}

/* line 1, app/assets/stylesheets/components/song_reference.scss */
.song-references {
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  margin-left: 20px;
  margin-top: 48px;
  margin-bottom: 55px;
  color: var(--comment-color);
  text-align: left;
}

/* line 12, app/assets/stylesheets/components/song_reference.scss */
.song-references:hover {
  cursor: pointer;
}

/* line 17, app/assets/stylesheets/components/song_reference.scss */
.song-reference {
  padding: 4px 0;
}

/* line 21, app/assets/stylesheets/components/song_reference.scss */
.lang-link-list.with-line {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid;
}

/* line 27, app/assets/stylesheets/components/song_reference.scss */
.lang-link-list {
  text-align: left;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  color: var(--comment-color);
  max-width: 80%;
}

/* line 36, app/assets/stylesheets/components/song_reference.scss */
.language_link {
  padding: 4px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

/* line 42, app/assets/stylesheets/components/song_reference.scss */
.language_link:hover {
  cursor: pointer;
}

/* line 46, app/assets/stylesheets/components/song_reference.scss */
button.song-reference-toggle {
  height: 32px;
  width: 32px;
  background: none;
  border: none;
  padding: 0;
  color: var(--comment-color);
  fill: var(--comment-color);
  z-index: 10;
  position: absolute;
  bottom: 15px;
  left: 20px;
}

/* line 60, app/assets/stylesheets/components/song_reference.scss */
button.song-reference-toggle svg {
  height: 100%;
  fill: currentColor;
}

/* line 65, app/assets/stylesheets/components/song_reference.scss */
button.song-reference-toggle:hover {
  cursor: pointer;
}

/* line 4, app/assets/stylesheets/components/translation_display.scss */
.language_link_row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

/* line 10, app/assets/stylesheets/components/translation_display.scss */
.language_link_row .language_link {
  flex: 1;
  min-width: 0;
}

/* line 17, app/assets/stylesheets/components/translation_display.scss */
.add-translation-btn {
  background: var(--background);
  border: 1px solid var(--comment-color);
  color: var(--comment-color);
  font-size: 16px;
  line-height: 1;
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* line 34, app/assets/stylesheets/components/translation_display.scss */
.add-translation-btn:hover:not(:disabled) {
  background: var(--comment-color);
  color: var(--background);
}

/* line 39, app/assets/stylesheets/components/translation_display.scss */
.add-translation-btn:disabled {
  opacity: 0.5;
  cursor: default;
  background: var(--comment-color);
  color: var(--background);
  border-color: var(--comment-color);
}

/* line 47, app/assets/stylesheets/components/translation_display.scss */
.add-translation-btn.displayed {
  background: var(--comment-color);
  color: var(--background);
}

/* line 54, app/assets/stylesheets/components/translation_display.scss */
.active-translations-section {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ui-color);
}

/* line 60, app/assets/stylesheets/components/translation_display.scss */
.translations-label {
  font-size: 11px;
  color: var(--comment-color);
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 69, app/assets/stylesheets/components/translation_display.scss */
.active-translation-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

/* line 76, app/assets/stylesheets/components/translation_display.scss */
.translation-link {
  flex: 1;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
}

/* line 85, app/assets/stylesheets/components/translation_display.scss */
.translation-link:hover {
  text-decoration: underline;
}

/* line 90, app/assets/stylesheets/components/translation_display.scss */
.remove-translation-btn {
  background: var(--background);
  border: 1px solid var(--comment-color);
  color: var(--comment-color);
  font-size: 18px;
  line-height: 1;
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
  transition: all 0.2s ease;
}

/* line 108, app/assets/stylesheets/components/translation_display.scss */
.remove-translation-btn:hover {
  background: var(--comment-color);
  color: var(--background);
}

/* line 115, app/assets/stylesheets/components/translation_display.scss */
.translation-display {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--ui-color);
}

/* line 121, app/assets/stylesheets/components/translation_display.scss */
.translation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-left: 2px solid var(--ui-color);
  background: transparent;
}

/* line 131, app/assets/stylesheets/components/translation_display.scss */
.translation-language {
  font-weight: 400;
  font-size: 12px;
  text-transform: capitalize;
  color: var(--comment-color);
  letter-spacing: 0.5px;
}

/* line 139, app/assets/stylesheets/components/translation_display.scss */
.translation-remove-btn {
  background: transparent;
  border: none;
  color: var(--comment-color);
  font-size: 18px;
  line-height: 1;
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

/* line 155, app/assets/stylesheets/components/translation_display.scss */
.translation-remove-btn:hover {
  opacity: 1;
  background: var(--text);
  color: var(--background);
}

/* line 1, app/assets/stylesheets/scaffolds.scss */
body {
  font-family: verdana, arial, helvetica, sans-serif;
}

/* line 5, app/assets/stylesheets/scaffolds.scss */
p, ol, ul, td {
  font-family: verdana, arial, helvetica, sans-serif;
  margin: 33px;
}

/* line 10, app/assets/stylesheets/scaffolds.scss */
input, textarea, select, button {
  font-size: 100%;
}

/* line 14, app/assets/stylesheets/scaffolds.scss */
pre {
  background-color: #eee;
  padding: 10px;
  font-size: 80%;
}

/* line 20, app/assets/stylesheets/scaffolds.scss */
a {
  color: var(--link-color);
  text-decoration: none;
}

/* line 24, app/assets/stylesheets/scaffolds.scss */
a:hover {
  color: #fff;
  background-color: #333;
}

/* line 30, app/assets/stylesheets/scaffolds.scss */
th {
  padding-bottom: 5px;
}

/* line 34, app/assets/stylesheets/scaffolds.scss */
td {
  padding-bottom: 7px;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 41, app/assets/stylesheets/scaffolds.scss */
div.field, div.actions {
  margin-bottom: 10px;
}

/* line 46, app/assets/stylesheets/scaffolds.scss */
#notice {
  color: #41ab19;
  background-color: #ddeadd;
}

/* line 51, app/assets/stylesheets/scaffolds.scss */
#alert {
  color: #f70505;
  background-color: #ffd1d1;
}

/* line 56, app/assets/stylesheets/scaffolds.scss */
body.css-night #notice {
  color: #90ee93;
  background-color: #1a2e1a;
}

/* line 61, app/assets/stylesheets/scaffolds.scss */
body.css-night #alert {
  color: #ff6b6b;
  background-color: #2e1a1a;
}

/* line 66, app/assets/stylesheets/scaffolds.scss */
#notice, #alert {
  padding: 20px;
  border-radius: 5px;
}

/* line 71, app/assets/stylesheets/scaffolds.scss */
.field_with_errors {
  padding: 2px;
  background-color: red;
  display: table;
}

/* line 77, app/assets/stylesheets/scaffolds.scss */
#error_explanation {
  width: 450px;
  border: 2px solid red;
  padding: 7px;
  padding-bottom: 0;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}

/* line 85, app/assets/stylesheets/scaffolds.scss */
#error_explanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 5px 5px 5px 15px;
  font-size: 100%;
  margin: -7px;
  margin-bottom: 0;
  background-color: #c00;
  color: #fff;
}

/* line 96, app/assets/stylesheets/scaffolds.scss */
#error_explanation ul li {
  font-size: 100%;
  list-style: square;
}

/* line 102, app/assets/stylesheets/scaffolds.scss */
label {
  display: block;
}

/* normal theme: */
/* line 2, app/assets/stylesheets/themes.scss */
body {
  --text: #333;
  --background: white;
  --title: #333;
  --index-row-bg: #F2F2F2;
  --chord: #1f45ff;
  --link-color: #333;
  --comment-color: #aaa;
  --ui-color: #ccc;
}

/* night theme: */
/* line 15, app/assets/stylesheets/themes.scss */
body.css-night {
  --text: white;
  --background: black;
  --title: #ccc;
  --index-row-bg: #222;
  --chord: #aaa;
  --link-color: #aaa;
  --comment-color: #aaa;
  --ui-color: #aaa;
}

@media (min-width: 500px) {
  /* line 7, app/assets/stylesheets/application.scss */
  html {
    font-size: 14px;
  }
}

@media (max-width: 499px) {
  /* line 12, app/assets/stylesheets/application.scss */
  html {
    font-size: 16px;
  }
  /* line 15, app/assets/stylesheets/application.scss */
  .home-title-row {
    margin-top: 0px;
  }
}

/* line 19, app/assets/stylesheets/application.scss */
body {
  color: var(--text);
  background-color: var(--background);
  font-size: 100%;
  position: relative;
  min-height: calc(100vh - 16px);
  margin: 8px;
}

/* line 28, app/assets/stylesheets/application.scss */
.application-container {
  max-width: 800px;
  margin: auto;
  padding: 20px 30px;
}

@media (max-width: 400px) {
  /* line 28, app/assets/stylesheets/application.scss */
  .application-container {
    padding: 20px 10px;
  }
}

/* line 38, app/assets/stylesheets/application.scss */
h4 {
  display: inline-block;
}

/* line 42, app/assets/stylesheets/application.scss */
.test {
  width: 50px;
  height: 50px;
}

/* line 47, app/assets/stylesheets/application.scss */
h1 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--title);
}

/* line 55, app/assets/stylesheets/application.scss */
h2 {
  margin-top: 30px;
  color: var(--title);
}

/* line 60, app/assets/stylesheets/application.scss */
.text-center {
  text-align: center;
}

/* line 64, app/assets/stylesheets/application.scss */
.centered {
  text-align: center;
}

/* line 68, app/assets/stylesheets/application.scss */
.centered > * {
  text-align: left;
}

/* line 72, app/assets/stylesheets/application.scss */
.bottom-nav-buttons {
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
}
