/* This CSS is used when the light mode is forced, e.g. produce.php */

body {
	margin-left: 2em;
	margin-right: 2em;
	margin-top: 2em;
	background-color:GhostWhite;
	color: black;
	}

div {
    background-color: white;
    color: black;
	}

table {
    background-color: white;
    color: black;
	}

td {
    background-color: white;
    color: black;
	}

.green-text {
    color: #007BFF;
    }

h2 {
    color: black;
    }

h3 {
    color: #007BFF;
	font-size: 140%;
    }

h4 {
    color: #007BFF;
	font-size: 120%;
    }

textarea {
	overflow: visible;
	overflow-x: hidden;
	background-color: white;
	color: black;
	}

.tonalnotes {
    color: darkmagenta;
	}

tr {
    background-color: white;
    color: black;
	}

a:link {
	color: #007BFF;
	}
a:visited {
	color: #007BFF;
	}
a:hover {
    border-bottom: 4px solid yellow;
	}
a:hover img#darkModeToggle,
a:hover img#darkModeToggle + * {
    border-bottom: none;
    background-color: transparent;
    filter: none;
	}

table {
	padding: 0.4em;
	border-spacing: 0.4em;
	text-align: left;
	}

.thicktable {
	background-color:gold;
	border-spacing: 2px;
    border-collapse: separate; 
	}

th {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 1em;
	padding-right: 1em;
	border-radius: 0.5em;
	background-color:gold;
	color: black;
	vertical-align: top;
	white-space: nowrap;
	}

.no-border-spacing {
	border-collapse: collapse;
	}
.no-border-spacing, .no-border-spacing th, .no-border-spacing td {
	border: none;
	}

.gauche {
	display: inline-table;
    }
.triangle:hover {
	color:red;
	}
.blinking {
    animation:blinkingText 1.2s infinite;
	}
@keyframes blinkingText {
    0%{     color: red;    }
    49%{    color: red; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: red;    }
	}

p {
	text-align:left;
	padding: 0px;
	}

.shadow {
	border-radius: 26px;
	background-color:GhostWhite;
	color: black;
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
	}
	
td {
	text-align:left;
	vertical-align:top;
	padding-left: 0.5em;
	padding-right: 0.5em;
	padding-top: 0.5em;
	padding-bottom: 0em;
	background-color:white;
	}

.disabled {
    opacity: 0.6;
    cursor: auto !important;
	}
input[type=text] {
	font-size: small;
	background-color: Cornsilk;
	color:black;
	}

.thinborder {
	border:1px solid grey;
	border-radius: 1em;
	}

.save {
	background-color: yellow;
	border-radius: 0.5em;
	}

.edit {
	color:DarkBlue;
	background-color:Azure; 
	border-radius: 0.5em;
	}

.produce {
	color:DarkBlue;
	background-color:Aquamarine;
	border-radius: 0.5em;
	}

.produce:hover {
    background-color: #4CAF50;
    color: white;
    box-shadow: none;
	}
.produce:active {
	background-color: Aquamarine;
	margin-left: 1px 1px 0;
	box-shadow: -1px -1px 1px #000;
	}

.cancel {
	background-color:Cornsilk;
	}

.big {
    font-size: large;
	}

.warning {
	background-color:cornsilk;
	padding:1em;
	width:500px;
	box-shadow: 2px 2px 2px 2px gold;
	border-radius: 0.5em;
	}

input[type=submit] {
	margin: 2px;
	}
input[type=submit]:hover {
	cursor: pointer;
	}
button:hover {
	cursor: pointer;
	box-shadow: -2px -2px Aqua;
	}

input[type=text]:hover, input[type=number]:hover, input[type=date]:hover, input[type=file]:hover, input[type=mail]:hover, input[type=email]:hover, input[type=password], input[type=submit]:hover, input[type=search]:hover, textarea:hover, select:hover {
	box-shadow: -2px -2px Aqua;
	}
input[type=checkbox]:enabled:hover {
	box-shadow: -2px -2px Aqua;
	cursor: pointer;
	}
input[type=radio]:hover {
	box-shadow: -2px -2px Aqua;
	cursor: pointer;
	}
	
h1 {
	text-align:center;
	}
	
.tooltip {
    position: relative;
    display: inline-block;
	}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
	}

.tooltip:hover .tooltiptext {
    visibility: visible;
	}

.hidden {
	visibility: hidden;
	position:absolute;
	left: -9999px;
	top: -9999px;
	}
.unhidden {
	visibility: visible;
	}

#showhide {
	 background-color: white;
	 width: 80%;
	}

@media only screen and (min-device-width : 320px) and (max-device-width : 1024px) {
	.bouton {	
		font-size: small !important;
		}
	.clickrectangle {	
		font-size: small !important;
		}
     }

@keyframes flash {
	0%, 100% { opacity: 1; }   /* Fully visible */
	50% { opacity: 0; }        /* Fully transparent */
    }
#refresh {
    animation: flash 2s infinite; /* Animation name, duration, and repeat */
    }