:root {
  --bg-light: #f2f2f7;
  --bg-dark: #1c1c1e;

  --text-light: #1c1c1e;
  --text-dark: #ffffff;

  --muted-light:#333;
  --muted-dark: #999;

  --card-light: #ffffff;
  --card-dark: #2c2c2e;

  --input-light: #ffffff;
  --input-dark: #3a3a3c;

  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-dark: rgba(255, 255, 255, 0.05);

  --hover-light: #ddd;
  --hover-dark: #6b6b6b;

  --border-light: #ccc;
  --border-dark: #666;

  --blue: #007aff;

    --bg: var(--bg-light);
    --text: var(--text-light);
    --muted: var(--muted-light);
    --card: var(--card-light);
    --input-bg: var(--input-light);
    --shadow: var(--shadow-light);
    --image: invert(0);
    --hover: var(--hover-light);
    --border: var(--border-light);
}

[data-theme="light"] {
    --bg: var(--bg-light);
    --text: var(--text-light);
    --muted: var(--muted-light);
    --card: var(--card-light);
    --input-bg: var(--input-light);
    --shadow: var(--shadow-light);
    --image: invert(0);
    --hover: var(--hover-light);
    --border: var(--border-light);
}

[data-theme="dark"] {
    --bg: var(--bg-dark);
    --text: var(--text-dark);
    --muted: var(--muted-dark);
    --card: var(--card-dark);
    --input-bg: var(--input-dark);
    --shadow: var(--shadow-dark);
    --image: invert(1);
    --hover: var(--hover-dark);
    --border: var(--border-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* font-family: Tahoma; */
  letter-spacing: 0.6px;
  color: var(--text);
  background-color: var(--bg);
  padding-bottom: 100px;

  scroll-behavior: smooth;
  overflow: -moz-scrollbars-vertical; 
  overflow-y: scroll;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  font-size: 0.9rem;
}

img {
    filter: var(--image);
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

input[type=text], input[type=tel], input[type=email], input[type=password], input[type=file], input[type=button], select {
  width: 100%;
  padding: 0.75rem;
  color: var(--text);
  /* font-size: 1rem; */
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--input-bg);
}

input[type=button] {
    cursor: pointer;
}

button, input[type=submit] {
  width: 100%;
  padding: 0.75rem;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  background: var(--blue);
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
}

.no td {
    border: 0px;
}


ul, ol {
    margin-left: 20px;
}

li {
    padding-left: 5px;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  */

/* .red {color: #ff99A9;}
.green {color: #64E987;}
.blue {color: #88CEFB;} */

.red {color: #b0616d;}
.green {color: #3a864e;}
.blue {color: #4789b2;}

.bg {
    padding: 3px 6px 3px 6px;
    background-color: var(--hover);
    border: 1px solid #ccc;
    border-radius: 5px;
}

.path {
    font-style: italic;
    margin: 20px 0px -10px 0px;
}


/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  */
/* Notification = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   */

.success, .warning {
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;

    border: 1px solid;
    margin: 10px;
    padding: 10px;
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    animation: notice 3s linear forwards;
}

@keyframes notice {
	90% { transform: translateY(0px);}
	100% { transform: translateY(-30vh);}
}

.success {
    color: #4F8A10;
    background-color: #DFF2BF;
}

.warning {
    color: #9F6000;
    background-color: #FEEFB3;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  */
/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  */

.scroll-top-link {
    position: fixed;
    bottom: 100px;
    right: 20px;
    padding: 10px 10px;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    line-height: 13px;
    text-align: center;
    border-radius: 3px;
    opacity:0.6; 
    background-color: #666;
    z-index: 2000;
    text-decoration: none;
}

.scroll-top-link:hover {
    opacity: initial;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  */
/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  */

.container {
    height: 100%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.border {
  padding: 2rem;
  margin: 2rem;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.border img {
    max-width: 100%;
}

.hint {
  width: 100%;
  font-size: 0.7rem;
  color: rgb(196, 134, 17);
  margin: -10px 0px 20px 0px;
}

@media screen and (max-width: 850px) {

    .container {
        padding: 10px;
    }

    .border {
        padding: 1.5rem 0.5rem;
        margin: 0px;
        margin-bottom: 1rem;
    }

    .border table {
        overflow-x: auto;
        display: block;
    }

    th, td {
        padding: 5px;
        font-size: 0.8rem;
        text-align: center;
}
}
  


   
    
   