/**
 * Theme Name:     Salient Child
 * Author:         ThemeNectar
 * Template:       salient
 * Text Domain:	   salient-child
 * Description:    An Ultra Responsive Multi-Purpose Theme.
 */

.faceclaim-container {
    display: flex;
    flex-direction: column;
    gap: 1px; /* Abstand zwischen den Zeilen */
    background: #000; /* Hintergrundfarbe */
}

.faceclaim-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* Innenabstand */
    background: #111; /* Zeilenfarbe */
    border-bottom: 1px solid #222; /* Trennlinie */
    transition: background 0.3s ease; /* Hover-Übergang */
}


.faceclaim-username {
    font-size: 16px;
    font-weight: 500;
    color: #fff; /* Textfarbe */
    flex: 1; /* Füllt den verfügbaren Platz */
    text-align: left;
}

.faceclaim-name {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    flex: 1;
    text-align: right; /* Text rechtsbündig */
}

.faceclaim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #333; /* Kopfzeilenfarbe */
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid #444;
}

.faceclaim-container .faceclaim-entry:last-child {
    border-bottom: none; /* Keine Linie unter der letzten Zeile */
}



.reservation-entry {
    padding: 15px 20px; /* Innenabstand */
    background: #111; /* Zeilenfarbe */
    border-bottom: 1px solid #222; /* Trennlinie */
    transition: background 0.3s ease; /* Hover-Übergang */
}

.reservation-entry span {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #fff;
}


input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    background-color: #4CAF50;
    color: black;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.toggle>.toggle-title a{
	color: #ede8e4;
}