body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 80%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #00796b;
}

/* Suchleiste */
input[type="text"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 2px solid #00796b;
    border-radius: 5px;
    background-color: #e0f7fa;
}

input[type="text"]:focus {
    outline: none;
    border-color: #004d40;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    border-radius: 5px;
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;
}

th {
    background-color: #00796b;
    color: #ffffff;
}

td {
    color: #333;
}

/* Abwechselnde Zeilenfarben */
tr:nth-child(odd) {
    background-color: #f9f9f9; /* Helle Farbe für ungerade Zeilen */
}

tr:nth-child(even) {
    background-color: #ffffff; /* Weiße Farbe für gerade Zeilen */
}

/* Zeilen mit leerem Vers hervorheben (hellblau) */
tr.empty-verse td {
    background-color: #e3f2fd; /* Helles Blau für Zeilen ohne Vers-Text */
}

/* Link für Parallelstellen */
.view-notes {
    color: #00796b;
    cursor: pointer;
    text-decoration: underline;
}

.view-notes:hover {
    color: #004d40;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #00796b;
    width: 70%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.close {
    color: #00796b;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #004d40;
    text-decoration: none;
    cursor: pointer;
}
