body {
    font-family: Arial;
    padding: 0px;
    margin: 0px;
}

textarea {
    font-family: Arial;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

a {
    display: inline;
}

* [ondblclick] {
    cursor: pointer;
}

.mobile-only {
    display: none;
}

@media only screen and (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

    .mobile-only-flex {
        display: flex !important;
    }

    .desktop-only, .desktop-only * {
        display: none !important;
    }
}

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

#container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.form00 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
}
.form00 input, .form00 select {
    padding: 7px;
    border-radius: 5px;
    border: 1px solid black;
}

.form00 input:focus, .form00 select:focus {
    outline: 2px solid dodgerblue;
}

.div_horz {
    display: flex;
    align-items: center;
    gap: 10px;
}
.div_horz * {
    margin: 0px none;
}

.div_vert {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.div_vert * {
    margin: 0px none;
}
.div_input {
    display: flex;
    flex-direction: column;
}
.div_success {
    text-align: center;
    padding: 20px;
    color: rgba(49,112,143,1);
    background-color: rgba(217,237,247,1);
    border: 2px solid rgba(188,232,241,1);
    border-radius: 10px;
}

.nowrap {
    word-wrap: normal;
    white-space: nowrap;
}

.div_input label {
    font-size: 14px;
}

button, .button {
    margin: 0px;
    display: inline-block;
    padding: 7px;
    font-size: 14px;
    border-radius: 5px;
    width: fit-content;
    text-decoration: none;
    color: rgba(0,0,0,1);
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(0,0,0,1);
}

.btn {
    color: rgba(0,0,0,1);
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(0,0,0,1);
}

.btn:hover {
    color: white;
    background: rgba(0,0,0,1);
}

.btn-create {
    color: rgba(30,144,255,1);
    background: rgba(30,144,255,0.2);
    border: 2px solid rgba(30,144,255,1);
}

.btn-create:hover {
    color: white;
    background: rgba(30,144,255,1);
}

.btn-accept {
    color: rgb(0,221,29);
    background: rgba(0,221,29,0.2);
    border: 2px solid rgba(0,221,29,1);
}

.btn-accept:hover {
    color: white;
    background: rgba(0,221,29,1);
}

.btn-delete {
    color: rgb(255, 30, 30);
    background: rgba(255, 30, 30, 0.2);
    border: 2px solid rgb(255, 30, 30);
}

.btn-delete:hover {
    color: white;
    background: rgb(255, 30, 30);
}

.table00 {
    width: 100%;
    border-collapse: collapse;
}
.table00 th, .table00 td {
    font-size: 14px;
    padding: 7px;
    border: 1px solid gray;
}
.table00 th {
    background-color: rgba(16,178,215,0.2);
    resize: horizontal;
}
.table00 a {
    display: block;
    width: fit-content;
}

.table01 {
    width: 100%;
    border-collapse: collapse;
}
.table01 th, .table01 td {
    font-size: 14px;
    padding: 7px;
    border: 1px solid black;
}
.table01 th {
    background-color: lightgray;
    resize: horizontal;
}
.table01 a {
    display: block;
    width: fit-content;
}

.labelinputbox {
    display: block;
    font-size: 14px;
}

.inputbox {
    display: block;
    font-size: 14px;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid gray;
}

.inputbox:focus {
    outline: 2px solid dodgerblue;
}

.w100 {
    width: 100%;
}

.text-c {
    text-align: center;
}

/******************************************************************************
* ID: divLoading
* Point: start
******************************************************************************/
#divLoading {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.2); 
    z-index: 2;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.pl, .pl__worm {
	animation-duration: 3s;
	animation-iteration-count: infinite;
}

.pl {
	animation-name: bump;
	animation-timing-function: linear;
	width: 8em;
	height: 8em;
    background: white;
    border-radius: 20px;
}
.pl__ring {
	stroke: hsla(var(--hue),10%,10%,0.1);
	transition: stroke 0.3s;
}
.pl__worm {
	animation-name: worm;
	animation-timing-function: cubic-bezier(0.42,0.17,0.75,0.83);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: hsl(var(--hue),10%,10%);
		--fg: hsl(var(--hue),10%,90%);
	}
	.pl__ring {
		stroke: hsla(var(--hue),10%,90%,0.1);
	}
}

/* Animations */
@keyframes bump {
	from,
	42%,
	46%,
	51%,
	55%,
	59%,
	63%,
	67%,
	71%,
	74%,
	78%,
	81%,
	85%,
	88%,
	92%,
	to { transform: translate(0,0); }
	44% { transform: translate(1.33%,6.75%); }
	53% { transform: translate(-16.67%,-0.54%); }
	61% { transform: translate(3.66%,-2.46%); }
	69% { transform: translate(-0.59%,15.27%); }
	76% { transform: translate(-1.92%,-4.68%); }
	83% { transform: translate(9.38%,0.96%); }
	90% { transform: translate(-4.55%,1.98%); }
}
@keyframes worm {
	from { stroke-dashoffset: 10; }
	25% { stroke-dashoffset: 295; }
	to { stroke-dashoffset: 1165; }
}
/******************************************************************************
* ID: divLoading
* Point: End
******************************************************************************/