/* Formular Felder generell */
 
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        input[type="text"], input[type="password"],
        textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
        }
        input[type="submit"] {
            background: linear-gradient(to bottom, orange 0%, orange 1%, darkred 99%, darkred 100%);
            color: white;
            padding: 1px 1px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            min-height: 20px;
            min-width: 150px;
            box-sizing: border-box;
            }
        input[type="submit"]:hover {
            background: linear-gradient(to bottom, black 0%, rgba(255, 165, 0, 0.57) 1%, darkred 99%, darkred 100%);


        }
        .form-group {
            margin-bottom: 20px;
        }
        button[type="submit"], button[type="button"] {
			background: linear-gradient(to bottom, orange 0%, orange 1%, darkred 99%, darkred 100%);
			color: white;
			text-decoration: none;
			padding: 10px 16px;
			border: none;
			border-radius: 6px;
			cursor: pointer;
			font-size: 16px;
			min-height: 40px;
			min-width: 160px;
			box-sizing: border-box;

			display: inline-flex;
			align-items: center;
			justify-content: center; /* <<< Wichtig */
			text-align: center;
			gap: 8px;

			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
			transition: all 0.25s ease-in-out;
        }

            .button-container {
                display: flex;
                margin-top: 20px; /* Optional: Abstand nach oben, falls benötigt */
            }

        button.delete-button[type="button"] {
            width: 26px;
            min-width: 26px;
            background: none;
            border: none;
            padding: 0;
            cursor: pointer; /* Ändert den Cursor, um anzuzeigen, dass der Button anklickbar ist */
        }

        button.delete-button img {
            width: 24px;
            height: 24px;
        }


/* Sortier-Filter */
        .sort-options {
            text-align: right;
            margin: 20px;
        }
        select {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 4px;
            background-color: #fff;
            cursor: pointer;
        }


/* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        table, th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
        h1 {
            font-size: 24px;
            margin-bottom: 20px;
        }