﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-image: url("/assets/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

header {
    background-color: dodgerblue !important;
}

.new-patient {
    top: 25%;
    left: 53%;
    padding-right: 5%;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.old-patient2 {
    padding:2%; 
    width: 100%;
    height: 100%;
    overflow: auto;
}
.medical-history-input {
    width: 80%;
    height: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
    text-align: start;
    line-height: 1.5;
    white-space: pre-wrap;
}

.medical-history-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}


.plus {
    color: rgb(0, 3, 159);
}

.form-create {
    width: 100%;
    background-color: lightskyblue;
    color: darkblue;
}

.form-create2 {
    width: 60%;
    background-color: lightskyblue;
    color: darkblue;
}


div, textarea, pre {
    overflow: hidden;
}

/* Ensuite ton style pour Chromium / Edge */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: lightskyblue;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: darkblue;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: lightskyblue;
}