﻿body {
  font-family: Arial, sans-serif;
  background-color: #F5F5F5;
}
body .form-group {
  margin-bottom: 15px;
}
body .login-form {
  max-width: 450px;
  margin: auto;
}
body .hidden {
  display: none;
}
body .data-table {
  table-layout: auto;
  width: 100%;
  margin-top: 5px;
}

body .data-table .data-row {
    cursor: pointer;
    transition: background-color 0.3s;
}

body .data-table .data-row:hover {
    background-color: #dbdbdb;
}

body .data-table th, body .data-table td {
  white-space: nowrap;
  padding: 8px;
}
body .data-table th input, body .data-table td input {
  width: 100%;
}
body .data-table th select, body .data-table td select {
  height: 30px;
  width: 100%;
}

body a {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
}

body a:hover {
    color: #212529;
    text-decoration: underline;
}

body .add a {
  text-decoration: none;
}
body .add a i {
  margin-right: 5px;
}
body .form-floating {
  margin-bottom: 15px;
}
body .form-floating:last-child {
  margin-bottom: 0;
}
body .app-loader {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
}
body .infinity-loader {
  margin: auto;
}
body .invisible {
  visibility: hidden;
}
body .result-controls {
  border-bottom: 1px solid #6c757d;
  border-top: 1px solid #6c757d;
  padding: 15px 0;
}
body .result-controls .action-buttons {
  margin-left: 20px;
}
body .result-controls .action-buttons i {
  margin-right: 5px;
}
body .code-generate-button {
    position: absolute;
    top: 10px;
    right: 10px;
}

.square_image {
    width: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.profile_photo {
    border-radius: 15px;
}

.complete.odd {
    background-color: #F5F5F5;
}

.complete.even {
    background-color: #c3c3c3;
}

.incomplete {
    background-color: #e9c2c2;
}

.incomplete.odd {
    background-color: #e9c2c2;
}

.incomplete.even {
    background-color: #f3d7d7;
}

.save_container {
    position: sticky;
    bottom: 0px;
    background-color: #f5f5f5;
    padding: 30px;
}

.complete-text {
    font-size: 2rem;
    border-top: 1px solid;
    border-bottom: 1px solid;
    width: fit-content;
    margin: auto;
    position: relative;
    top: 70px;
}

.invalid {
    border: 2px solid red;
}
/*
.modal-background {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal {
    display: block;
    width: 50%;
    height: 70%;
    background-color: white;
    color: black;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow-y: auto;
    animation: scaleIn 0.3s ease;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@keyframes fadeIn {
    from {
        background-color: rgba(0, 0, 0, 0);
    }

    to {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}*/