﻿:root {
  --primary-color: #F1554C;
  --primary-color-dark: #D34843;
  --primary-color-light: #ED7874;
  --primary-color-very-light: #EAC1C0;
  --default-border-radius: 5px;
}

html, body {
  font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  color: #323130;
  background: #F8F8FA;
  margin: 0;
  padding: 0;
}

a, .btn-link {
  color: #0366d6;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.white-space-pre-line {
  white-space: pre-line;
  text-align: left;
  max-width: 20rem;
}

/* Setting global font sizes*/
html {
  font-size: 15px;
}

@media (max-width: 900px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  html {
    font-size: 13px;
  }
}

/* Type will scale with modules */
h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 2em;
}


.created-updated {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: gray;
  font-size: small;
  margin-top: 20px;
}

.mud-card-actions {
  justify-content: end;
  gap: 20px;
}

.text-ellipsis {
  width: 100%;
  margin-left: 3px;
  margin-right: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-token-border {
  display: inline-block;
  background: #efefef;
  border: 1px solid gray;
  padding: 0 0.5em;
  border-radius: 2px;
  margin-left: 1px;
  margin-right: 1px;
}

.tag-token-text {
  color: #404040;
  font-weight: 500;
  font-size: 0.7rem;
}

.semi-transparent {
  opacity: 0.5;
}

.active-color {
  color: #00A300;
}

.inactive-color {
  color: #40404040;
}

/*add this to avoid flickering*/
.plk-dd-inprogess > * {
  pointer-events: none;
}

/*dropzone style style*/
.plk-dd-dropzone {
  min-height: 50px;
}

/*drag drop styles*/

.plk-dd-spacing {
  height: 10px;
}

.plk-dd-spacing-dragged-over {
  padding: 25px;
}

/*.plk-dd-dragged-over {
    background-color: lightgray;
    opacity: 0.6;
    animation: blinker 1s linear infinite;
}

    .plk-dd-dragged-over > div {
        background-color: lightgray;
        opacity: 0.6;
        animation: blinker 1s linear infinite;
    }

.plk-dd-dragged-over-denied {
    background-color: red;
    opacity: 0.6;
    animation: blinker 1s linear infinite;
}

.plk-dd-in-transit {
    opacity: 0;
}

    .plk-dd-in-transit > div {
        opacity: 0;
    }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.blink_me {
    animation: blinker 1s linear infinite;
}*/

/*for flex demo*/

.plk-flex .plk-dd-spacing {
  width: 20px;
  height: auto;
}

/*.plk-flex .plk-dd-dragged-over {
    background-color: lightgray;
    opacity: 0.6;
    animation: blinker 1s linear infinite;
}

    .plk-flex .plk-dd-dragged-over > div {
        background-color: lightgray;
        opacity: 0.9;
        animation: blinker 1s linear infinite;
    }

.plk-flex .plk-dd-in-transit {
    background-color: orangered;
}

    .plk-flex .plk-dd-in-transit > div {
        background-color: orangered;
    }

.plk-dd-noselect {
    -webkit-touch-callout: none;*/ /* iOS Safari */
/*-webkit-user-select: none;*/ /* Safari */
/*-khtml-user-select: none;*/ /* Konqueror HTML */
/*-moz-user-select: none;*/ /* Old versions of Firefox */
/*-ms-user-select: none;*/ /* Internet Explorer/Edge */
/*user-select: none;*/
/* Non-prefixed version, currently
                                 supported by Chrome, Edge, Opera and Firefox */
/*}*/

.mud-input.mud-input-outlined {
  background: white;
}
