:root {
    --font-family: Arial, Helvetica, sans-serif;
    --primary-background: #3498DB;
    --secondary-background: #2980B9;
}

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

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased !important;
}

.bg-taps {
    background-color: var(--primary-background) !important;
}

.text-taps {
    color: var(--primary-background);
}

button.text-taps:hover {
    color: var(--secondary-background);
}

a {
    color: var(--primary-background);
}

a:hover {
    color: var(--secondary-background);
}

a.disabled {
    pointer-events: none;
    color: #6c757d;
    cursor: default;
}

.mrs-5 {
    margin-right: .5rem;
}

.mls-5 {
    margin-left: .5rem;
}

.btn-taps {
    color: #fff !important;
    background-color: var(--primary-background) !important;
    transition: background-color 0.3s;
}

.btn-taps:hover {
    color: #fff !important;
    background-color: var(--secondary-background) !important;
}

.btn-options-taps {
    color: var(--primary-background) !important;
    background-color: none !important;
    transition: background-color 0.3s;
}

.btn-options-taps:hover {
    color: #fff !important;
    background-color: var(--secondary-background) !important;
}

.btn-light {
    border: 1px solid #d3d4d5 !important;
}

.errorlist li {
    color: red;
}

.form-check-input[type=checkbox] {
    margin-top: 0;
}

.form-check-input:checked {
    background-color: rgb(0, 190, 0);
}

#toast-container {
    position: fixed;
    top: 20px;
    left: 40%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.taps-toast {
    width: 300px;
    text-align: center;
}

.taps-toast .toast-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.6);
    animation: toast-progress 8s linear forwards;
}

@keyframes toast-progress {
    from { width: 100%; }
    to { width: 0%; }
}

.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading p {
    margin-bottom: .5rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    background-color: var(--primary-background);
    border-radius: 50%;
    animation: loading-bounce 1.5s infinite ease-in-out;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loading-bounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}

.animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-checkbox-svg {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0.6;
    animation: slide 8s linear infinite;
}

@keyframes slide {
    from {
        transform: translateX(-10%) rotate(0deg);
    }
    to {
        transform: translateX(110vw) rotate(360deg);
    }
}

a.card-title {
    text-decoration: none;
}

a.card-title:hover {
    color: var(--secondary-background);
}

.user-dropdown-img {
    width: 40px;
    height: 40px;
    font-weight: bold;
    margin-left: 1rem;
    margin-right: .3rem;
}

code {
    font-family: monospace;
    background-color: #f6f8fa;
    border-radius: 6px;
    padding: 2px 5px;
    font-size: 85%;
    color: #24292e;
    border: 1px solid #d0d7de;
    white-space: pre-wrap;
}

button:disabled {
    border: 0px;
}

blockquote {
  margin: 0 0 16px 0;
  padding: 0 1em;
  color: #656d76;
  border-left: 0.25em solid #d0d7de;
  background: transparent;
  font-size: 16px;
  font-style: normal;
}
