        /* General styles for the card */
        .card {
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 12px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: flex-start;
            position: relative;
            
        }

        /* Styles for the order number */
        .order-number {
            font-size: 1.5em;
            font-weight: bold;
            margin-right: 16px;
            text-align: center;
            width: 40px;
        }

        /* Styles for card details */
        .card-details {
            flex-grow: 1;
        }

        .card-header {
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .card-subheader {
            font-size: 1em;
            margin-bottom: 4px;
        }

        .card-description-content {
            display: none;
            margin-top: 4px;
            padding-left: 10px;
			padding-bottom: 15px;
        }

        .card-description {
            cursor: pointer;
            color: #007BFF;
            display: block;
            margin: 15px 15px 15px 0;
        }

        .card-description:hover {
            text-decoration: underline;
        }

        /* Styles for the action buttons */
        .action-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            vertical-align: center;
            margin-left: 16px;
            justify-content: center;
        }

        .action-buttons button {
            background-color: #f8f9fa;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 4px 4px;
            margin-bottom: 4px;
            cursor: pointer;
            font-size: 0.9em;
            width: 32px;
            height: 32px;
        }

        .action-buttons button:hover {
            background-color: #e2e6ea;
        }
        
        .add-button {
            background-color: #007bff;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 4px 8px;
            margin-bottom: 4px;
            cursor: pointer;
            color: white !important;
            font-size: 20px;
			font-weight: 900;
            height: 32px;
			min-width: 150px;
        }

        .remove-button {
            color: #dc3545;
            border-color: #dc3545;
        }

        .remove-button:hover {
            background-color: #c82333;
            color: #fff;
        }

/* Rainbow Glow */
	.rainbow-glow {
		font-size: 2rem;
		font-weight: bold;
		color: #fff;
		text-align: center;
		padding: 20px;
		border-radius: 10px;
		animation: glow 1.5s infinite;
}

        /* Styling for section headers and spacing */
        h2 {
            border-bottom: 2px solid #007BFF;
            padding-bottom: 4px;
            margin-bottom: 20px;
            font-size: 1.5em;
        }

        #exerciseList {
            margin-bottom: 20px;
        }

        /* Styles for filters */
        .filters {
            margin-bottom: 20px;
        }

        .filters label {
            margin-right: 10px;
        }

        .filters input, .filters select {
            margin-right: 10px;
            padding: 5px;
        }
        #qrcode-print {
           display: none;
        }
		#bottomMenu {
		    position: fixed;
		    bottom: 0;
		    left: 0;
		    width: 100%;
		    z-index: 1000;
		    display: flex;
		    justify-content: center;
		    background-color: #f8f9fa;
		    padding: 0 0 20 0;
		    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
		}
		
		#bottomMenu button, #bottomMenu a {
		    margin: 0 15px;
		    font-size: 20px;
		    background-color: #007bff;
		    color: white;
		    border: none;
		    border-radius: 5px;
		    padding: 10px 20px;
		    cursor: pointer;
		    text-decoration: none;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		}
		
		#bottomMenu button:hover, #bottomMenu a:hover, .add-button:hover{
		    background-color: #0056b3;
		}
		
		#qrcode {
			margin: 20px 20px 10px 20px;
			align-items: center;
		    justify-content: center;
		}

		/* Ensure the rest of the content does not overlap the menu */
		body {
		    padding-bottom: 45px; /* Space for the bottom menu */
		    font-family: Arial, sans-serif;
		}
		
		.download-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        color: #ffffff;
        background-color: #007bff;
        border-radius: 5px;
		margin: 20px 20px 10px 20px;
    }

    .download-link:hover {
        background-color: #0056b3;
    }
    
    .reset-button {
    	display: inline-block;
        padding: 10px 20px;
        font-size: 20px;
        color: #ffffff;
        background-color: red;
        border-radius: 5px;
		color: white !important;
		margin: 20px 20px 10px 20px;
		min-width: 150px;
		text-align: center;
		text-decoration: none;
    }
	
	.hiit-button {
    	display: inline-block;
        padding: 10px 20px;
        padding: 10px 20px;
        font-size: 16px;
        color: white;
        border-radius: 5px;
		margin: 20px 20px 10px 20px;
		cursor: pointer;
    }
	
	.reset-button:hover {
		background-color: darkred;
	}

	.dropdown-menu {
		min-width: 200px;
	}
	
	.input-exercisesearch {
		min-width: 185px;
		}
	/* Green checkmark style */
	.checkmark {
		position: absolute;
		top: 20px;
		left: 15px;
		width: 20px;
		height: 20px;
		font-size: 26px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	        .rainbow-glow {
            font-size: 2rem;
            font-weight: bold;
            color: #fff; /* Base text color */
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            animation: glow 1.5s infinite;
        }

        @keyframes glow {
            0% {
                text-shadow: 0 0 5px red, 0 0 10px orange, 0 0 15px yellow, 0 0 20px green, 0 0 25px blue, 0 0 30px indigo, 0 0 35px violet;
            }
            50% {
                text-shadow: 0 0 10px red, 0 0 20px orange, 0 0 30px yellow, 0 0 40px green, 0 0 50px blue, 0 0 60px indigo, 0 0 70px violet;
            }
            100% {
                text-shadow: 0 0 5px red, 0 0 10px orange, 0 0 15px yellow, 0 0 20px green, 0 0 25px blue, 0 0 30px indigo, 0 0 35px violet;
            }
        }

/* Print-specific styles */
        @media print {
            body {
                padding-bottom: 0;
                padding-top: 10px;
            }

            #bottomMenu,
            .filters, #exerciseList, .action-buttons, .reset-button,
            h1, /* Hide header */
            h2:first-of-type { /* Hide the Übungen title */
                display: none;
            }
            
			.card-description-content {
				display: inline;
			}
            
            #trainingSection {
                column-count: 2;
                column-gap: 10px;
            }
            .card {
                page-break-inside: avoid;
                break-inside: avoid-column;
                width: 100%;
                margin-bottom: 20px;
                box-shadow: none;
                border: none;
            }

            .card-details {
                font-size: 0.9em;
            }
	     #qrcode {
            display: none;
        }
        #qrcode-print {
        	display: inline;
            position: fixed;
            top: 0;
            right: 0;
            margin: 0; /* Remove margin to ensure positioning */
            z-index: -1000; /* Ensure it is above other content */
        }
        .download-link {
        	display:none;
        }
        }