:root {
    /*--modal-bg-color: #7c9fc0;  Define the background color here */
    /*--modal-bg-color: #8cafd0; /* Define the background color here */
    --modal-bg-color: #bccfe0; /* Define the background color here */
}

/* Basic reset */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal overflow */
}

canvas {
    display: block;
}

a:visited {
  color: #0000ff;
}

a:link {
  color: #0000ff;
}

a {
  cursor: pointer;
  text-decoration: underline; /* optional if you want it to look more link-like */
  color: #0645AD; /* classic link blue or whatever you prefer */
}

a:hover {
  color: #0b0080; /* slightly darker on hover */
}

.tutorial-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.tutorial-modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 1rem;
  border-radius: 10px;
  width: fit-content;
  text-align: center;
}

.tutorial-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.small-button {
    padding: 2px 0px;
    width: 100px;
    font-size: 12px;
    line-height: 1;
    height: 24px;
    cursor: pointer;
    background-color: #C0C0C0;
}
.small-button:hover {
    background-color: #f0f0f0;
}


.shopping-status-select {
  font-size: 20px;
  line-height: 1.4;
  vertical-align: middle;
  padding: 2px 5px;
  position: relative;
  top: -2px; 
}

#dropdown-container {
  display: inline-block;
  vertical-align: middle;
}

input[type="number"],
button,

select {
  height: 28px;           
  padding: 0 5px;        
  font-size: 14px;
  line-height: 25px;     
  box-sizing: border-box;
  vertical-align: middle;
}


button {
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #444;
  background-color: #f0f0f0;
}

select {
  height: 28px;            /* Same height as your buttons */
  padding: 0 5px;          /* Horizontal padding */
  font-size: 14px;
  line-height: 28px;       /* Match height for vertical centering (adjust as needed) */
  box-sizing: border-box;
  vertical-align: middle;  /* Keep aligned with other elements */
  border-radius: 4px;
  border: 1px solid #444;
  background-color: #f0f0f0;
  cursor: pointer;
  appearance: none;        /* Optional: removes native styling for a cleaner look */
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:focus {
  outline: none;
  border-color: #007bff;
}


/* Ohms Calculator */
#ohmsLawCalculator {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #dde7f0;
    padding: 15px;
    border-radius: 10px;
    max-width: 400px;
    margin: auto;
}

#ohmsLawCalculator .input-row {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Space between input fields */
    margin-bottom: 10px;
}

#ohmsLawCalculator .input-group {
    width: 48%; /* Ensures each input takes up half of the row */
}

#ohmsLawCalculator label {
    font-weight: bold;
    display: block;
}

#ohmsLawCalculator input {
    width: 100%;
    padding: 5px;
    font-size: 16px;
}

/* Match input field colors to the corresponding section in the wheel */
#voltage {
    background-color: #f8e6c1; /* Light yellow (matches Voltage E) */
}

#current {
    background-color: #d1c0e3; /* Light purple (matches Current I) */
}

#resistance {
    background-color: #c9ddf3; /* Light blue (matches Resistance R) */
}

#power {
    background-color: #9bd39b; /* Light green (matches Power P) */
}

/* Make sure text is readable */
input {
    border: 1px solid #555;
    padding: 5px;
    font-size: 16px;
}



/* Style for the mouse position display */
#mousePosition {
    position: absolute;
    top: 600px;
    left: 0px;
    color: black; 
    font-size: 16px;
    z-index: 1000;
}

#wireLengthInput {
    width: 50px; 
}

#wireGaugeSelect {
    width: 100px; 
}

/* Hide the native checkbox */
input[type="checkbox"] {
    display: none;
}

/* Custom checkbox container */
.custom-checkbox {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: white;
    border: 2px solid #0c0;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}
input[type="checkbox"]:checked + .custom-checkbox {
    background-color: green;
    border-color: green;
}
input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '\2713'; /* Unicode checkmark */
    color: white;
    font-size: 16px;
    position: absolute;
    left: 2px;
    top: -2px;
}

.wireSeg-checkbox {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: white;
    border: 2px solid #0c0;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}
input[type="checkbox"]:checked + .wireSeg-checkbox {
    background-color: green;
    border-color: green;
}
input[type="checkbox"]:checked + .wireSeg-checkbox::after {
    content: '\2713'; /* Unicode checkmark */
    color: white;
    font-size: 16px;
    position: absolute;
    left: 2px;
    top: -2px;
}


/* Hide the native radio */
input[type="radio"] {
    display: none;
}

/* Custom radio button container */
.custom-radio {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: white;
    border: 2px solid #0c0;
    border-radius: 50%; /* Makes it circular */
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

/* Style for checked state */
input[type="radio"]:checked + .custom-radio {
    background-color: green;
    border-color: green;
}

input[type="radio"]:checked + .custom-radio::after {
    content: '';
    width: 9px; /* Adjust size for inner dot */
    height: 9px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the dot */
}

/* Disabled radio button style */
input[type="radio"]:disabled + .custom-radio {
    background-color: #ccc; /* Greyed-out background */
    border-color: #aaa; /* Greyed-out border */
    cursor: not-allowed;
}

input[type="radio"]:disabled:checked + .custom-radio::after {
    background-color: #f5f5f5; /* Light grey for inner dot */
}


.dropdown-container {
    margin: 0px;
    font-family: Arial, sans-serif;
}


.grayed-out {
    color: gray;
    opacity: 0.5;
    pointer-events: none; /* Optional: Prevent interactions */
}

#dropdown-container .shopping-status-select {
    width: 40px;
    background-color: transparent;
    border: none; /* Removes the border */
    color: #333;
    padding: 5px;
    border-radius: 4px;
    font-size: 16px;
    outline: none; /* Ensures no outline */
    cursor: pointer;
    text-align: center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.shopping-status-select {
    width: 40px;
    background-color: transparent;
    border: 1px solid #ccc;
    color: #333;
    padding: 5px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.shopping-status-select:focus {
    outline: none;
}

.shopping-selected-line {
  background-color: rgba(60, 235, 60, 0.3);
}

.product-group table tr {
  height: 60px;
}

.cost-line,
.extended-cost {
  height: 60px;
  vertical-align: middle;
  padding: 0;
  border: none;
}


/* when highlighted, apply the green to every cell in that row */
.shopping-selected-line td {
  background-color: rgba(60, 235, 60, 0.3);
}



.toast-container {
	position: fixed;
	top: 10%;
	left: 10%;
	/* transform: translateX(-50%); */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5em;
	pointer-events: none;
	z-index: 2147483647;
}

.toast-notification {
	opacity: 0;
	/* animate opacity + position */
	transition:
		opacity 0.3s ease,
		top     0.3s ease,
		left    0.3s ease,
		transform 0.3s ease;

	background: rgba(0, 100, 0, 0.5);
	border: 2px solid darkgreen;
	color: #fff;
	padding: 10px 30px;
	border-radius: 1.0em;
	font-family: Arial, sans-serif;
	font-size: 18px;
	text-align: center;
	pointer-events: none;
	box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.toast-notification.show {
	opacity: 1;
}

/*
#loadingIcon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 1.2em;
    padding: 40px;
}

.spinner::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
*/

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0); /* Semi-transparent background */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Align items to the top */
    padding-top: 40px; /* Adjust this value to control how far from the top */
    pointer-events: none; /* Allow clicks to pass through the modal background */
}

.modal-chart {
    position: fixed;
    left: 0;
    top: 0;
    /* width: 100%; */
    height: 100%;  
    background-color: rgba(0, 0, 0, 0.25); /* Semi-transparent background */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Align items to the top */
    padding-top: 40px; /* Adjust this value to control how far from the top */
    /* position: absolute; */ /* Make sure it doesn't cover the entire screen */
    /* pointer-events: none; */ /* Allow clicks to pass through */
}

.modal-content {
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-sizing: border-box;
    position: relative;
}

.modal-content-small {
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    max-width: 300px;
    box-sizing: border-box;
    position: relative;
}

.modal-content-scroll {
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: #8FBC8F; 
    padding: 20px;
    border-radius: 0px;
    width: 80%;
    max-height: 60vh; /* Sets a maximum height relative to the viewport */
    box-sizing: border-box;
    position: relative;
    overflow: auto; /* Adds scroll bars when content overflows */
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}


.modalLicenseContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 450px;
    max-width: 600px;
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}

.modalToolBoxContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 450px;
    max-width: 600px;
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}

.modalOhmsLawContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    max-width: 600px;
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}

.modalDcToDcContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 450px;
    max-width: 600px;
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}

.modalDcLoadContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 450px;
    max-width: 600px;
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}


.modalAutoSizeContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 5px;
    border-radius: 10px;
    width: 650px;
    max-width: 800px;
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555;
    max-height: 700px; 
    overflow: auto; /* Adds scroll bars when content overflows */
}

#modalLayoutContent {
    position: relative;
    //width: 70%; /* Adjust width for your design */
    max-width: 80%; /* Constrain max width */
    //width: 800px;
    //height: 750px; /* Fixed height */
    margin: 0 auto; /* Center horizontally */
    background-color: var(--modal-bg-color);; 
    overflow: hidden; /* Prevent child elements from overflowing */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: flex-start; /* Start stacking from the top */
    border: 2px solid #ccc;
    border-radius: 2px;
    padding: 10px;
    box-sizing: border-box;
    max-height: 700px; 
    overflow: auto; /* Adds scroll bars when content overflows */
    pointer-events: auto; /* Allow clicks to be processed */  
    touch-action: none; /* Prevents scrolling and browser touch gestures */
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none; /* Safari-specific text selection prevention */
    -ms-user-select: none; /* Internet Explorer text selection prevention */
}

.resize-handle {
    width: 6px;
    height: 6px;
    position: absolute;
    border-radius: 50%; /* Make handles circular */
    transition: background-color 0.2s ease, border 0.2s ease; /* Smooth transition */
}

.top-left {
    top: -5px;
    left: -5px;
    cursor: nwse-resize;
}

.top-right {
    top: -5px;
    right: -5px;
    cursor: nesw-resize;
}

.bottom-left {
    bottom: -5px;
    left: -5px;
    cursor: nesw-resize;
}

.bottom-right {
    bottom: -5px;
    right: -5px;
    cursor: nwse-resize;
}

.left {
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    cursor: ew-resize;
}

.right {
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    cursor: ew-resize;
}

.top {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    cursor: ns-resize;
}

.bottom {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    cursor: ns-resize;
}

#layoutContainer {
    max-width: 100%; /* Optional: Constrain maximum width */
    max-height: 450px; /* Prevent it from exceeding modal height */
    overflow: visible; 
    background-color: #909090 !important; /* Use !important to override inherited styles */    
    border: 3px solid #000;
    margin-top: 0px; /* Add spacing below input fields */
    border-radius: 3px;
    pointer-events: auto; /* Ensure grid and panels respond to clicks */
}

/* Floor or roof */
#panelWrapper {
    position: relative;
    width: 100%; /* Fill the container */
    height: 100%; /* Fill the container */
    pointer-events: auto; /* Ensure grid and panels respond to clicks */ 
    border-radius: 10px;
    overflow: visible;            

}
/* 
#dimensionOverlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 5px;
    display: none;
    pointer-events: none;
    z-index: 1000;
}

#dimensionOverlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 14px;
    border-radius: 3px;
    min-width: 50px;
    min-height: 20px;
}
*/
#dimensionOverlay {
    position: absolute;
    /* top: 10%; */
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the div */
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: none; /* Prevents interfering with clicks */
    display: none; /* Initially hidden */
    z-index: 9999; /* Ensures it appears above all other elements */
}


.modalCostContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-height: 800px; /* Set a maximum height to allow overflow */
    overflow: auto; /* Enable scrolling if content exceeds max-height */
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555;
}

.modalShareContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 100%; /* Set a reasonable width */
    max-width: 750px;
    max-height: 600px; /* Set a maximum height to allow overflow */
    overflow: auto; /* Enable scrolling if content exceeds max-height */
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555;
}

.modalTipsContent {
    position: absolute; /* Important for dragging */
    display: flex; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: #8FBC8F; 
    padding: 5px;
    border-radius: 10px;
    max-width: 300px;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
	max-height: 300px; /* Limits the height to a maximum of 300px */
	overflow-y: auto;  /* Adds a scroll bar if the content exceeds the max height */
}

.modalWireInspectorContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 450px;
    max-width: 600px;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}

/* .modal-content-wire-popup { */

.modalCloudsOriginalContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
    overflow: auto; /* Enable scrolling if content exceeds max-height */    
    max-height: 80vh;
}

.modalCloudsContent {
    position: absolute; 
    display: block; 
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    max-height: 600px; /* Set a maximum height to allow overflow */
    overflow: auto; /* Enable scrolling if content exceeds max-height */
    box-sizing: border-box;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555;
}


.modalGroupContent {
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 5px;
    border-radius: 5px;
    width: 90%;
    max-width: 700px;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}

#popupUsThermalMap {
    margin: 0; /* Remove any default margin around the image */
    padding: 0; /* Remove any internal padding */
    display: block; /* Ensure no extra space is reserved for inline elements */
    width: 500px; /* Set the desired width */
    height: auto; /* Maintain the aspect ratio */
}

.modalAcLoadsContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);; 
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}


.modalChartContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);;
    padding: 5px;
    border-radius: 10px;
    width: 900px;
    height: 550px;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}

.modalAwgContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);;
    padding: 5px;
    border-radius: 10px;
    width: 900px;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
}


.modalLoadSaveContent {
    position: absolute; /* Important for dragging */
    display: block; /* Ensure it is visible */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    color: #333; 
    background-color: var(--modal-bg-color);;
    padding: 5px;
    border-radius: 10px;
    width: 800px;
    max-height: 550px;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto; /* Ensure the modal content can still receive clicks */
    border: 2px solid #555; 
    max-height: 600px; 
    overflow: auto; /* Adds scroll bars when content overflows */    
    
}


.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: auto; /* Center the table */
}

th, td {
    padding: 8px;
    text-align: left;
    width: auto;
    border: 1px solid black;
}

input, select {
    width: 100%;
    box-sizing: border-box;
}

#totalWattAndAmpHoursContainer {
    text-align: center; 
    font-size: 20px; 
    margin-top: 10px; 
    font-weight: bold; 
}

.calculated-field {
    background-color: #33B5FF; 
    color: #333; 
    font-style: italic; 
    border: 1px solid #ccc; 
}

.draggable {
	touch-action: none;
}



