@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap'); */


@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.ttf') format('ttf'),
       url('fonts/Poppins-Regular.ttf') format('ttf');
       src: url('fonts/Poppins-Regular.ttf') format('ttf');
       src: local('Poppins'), url("fonts/Poppins-Regular.ttf");

       
  font-weight: 400; /* specify the font weight */
  font-style: normal; /* specify the font style */
}


* {
  box-sizing: border-box;
}

:root {
  --main-color: #3aa2b2;
}

html{
  width:100vw;
  height:100vh;
  font-family: "Poppins","Lucida Sans", sans-serif;
}

body{
  font-family: "Poppins","Tahoma", sans-serif;
  font-size: 12px;
  background-color: #e4e2f5;
  height: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

body.fade-in {
  opacity: 1;
  transition: opacity 0.3s;
}


h1{
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  /* color: #006b9d; */
  color: #3aa2b2;
}

h2{
  font-family: "Poppins", sans-serif;
  font-size:18px;
  /* color: #3aa2b2; */
  color: #006b9d;
}

h3{
  font-size: 18px;
  font-weight: bold;
  color: #006b9d;

}

h4{
  font-size: 16px;
  font-weight: bold;
  color: #006b9d;

}



@media screen and (max-width: 530px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
  .main {
    margin-left: 5px;
    left: 0;
    width: 100vw;
  }
}

@media print {
  table, ul, ol {
      break-inside: avoid;
  }
}

table{
  border-spacing: 5px;
  border-collapse: collapse;
  border-spacing: 0;
}

th{
  text-align:left;
  padding-right:20px;
  font-size:12px;
  vertical-align:middle;
  height:35px;
  width: 1%;
  white-space: nowrap;
}
td{
  text-align:left;
  padding-right:20px;
  font-size:12px;
  vertical-align:middle;
  height:30px;
  width: 1%;
  white-space: nowrap;
}
select{
  background-color: #fff;
  font-weight: bold !important;
}
input[type=checkbox].del{
  width:30px;
  height:30px;
  font-family: "Poppins";
  font-size:12px;
  padding-left:0px;
  text-align: left !important;
  align-content: left;
}

input[type=email]{
  width:250px;
  height:35px;
  font-size:12px;
  font-weight:bold;
  border:none;
  text-align: left;
  padding-left:10px;
}
select,option{
  font-family: "Tahoma","Poppins";
  width:232px;
  height:35px;
  font-size:12px;
  font-weight:bold !important; 
  border:none;
}

input[type=text]{
  width:250px;
  height:35px;
  font-size:12px;
  font-weight:bold !important;
  border:none;
  text-align: left;
  padding-left:10px;
}
input[type=password]{
  width:250px;
  height:35px;
  font-size:12px;
  font-weight:bold;
  border:none;
  text-align: left;
  padding-left:10px;
}
input[type=number]{
  width:250px;
  height:35px;
  font-size:12px;
  font-weight:bold !important;
  border:none;
  text-align: left;
  padding-left:10px;
}
input[type=date]{
  width:250px;
  height:35px;
  font-size:12px;
  font-weight:bold !important;
  border:none;
  text-align: left;
  padding-left:10px;
  font-family: 'Poppins';
  font-weight: normal;
}

input[type=tel]{
  width:250px;
  height:35px;
  font-size:12px;
  font-weight:bold !important;
  border:none;
  text-align: left;
  padding-left:10px;
}

input[type=submit]{
  width:232px;
  height:35px;
  background-color:#495ce8;
  background-color:#3d5af1;
  background-color:#006b9d;
  background-color:#3aa2b2;
  color:white;
  font-size:12px;
  font-weight:normal;
  border:none;
  box-shadow: 5px 5px 5px 0px #bbbbbb;
  transition: 0.5s;
}
input[type=submit]:hover{
  width:232px;
  height:35px;
  background-color:white;
  color:#495ce8;
  color:#3d5af1;
  color:#3aa2b2;
  font-weight:bold;
  border:none;
  cursor: pointer;
  box-shadow: 5px 5px 5px 0px #3aa2b2;
}

textarea{
  font-family: "Poppins";
  padding:10px 10px 10px 10px;
}

input[type=radio]{
  background-color: white; 
  color: #006b9d;
  color: #609db0;
  color: #3aa2b2;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  width: 25px;
  height: 25px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  vertical-align: middle;

}

input[type=radio]:checked {
  background-color: #609db0;
}



 button{
  width:232px;
  height:35px;
  background-color:#495ce8;
  background-color:#3d5af1;
  background-color:#006b9d;
  background-color:#3aa2b2;

  color:white;
  font-size:12px;
  font-weight:bold;
  border:none;
  transition: 0.5s;
  box-shadow: 5px 5px 5px 0px #bbbbbb;

} 
button:hover{
  width:232px;
  height:35px;
  background-color:white;
  color:#495ce8;
  color:#3aa2b2;
  /* font-size:14px; */
  font-weight:bold;
  border:none;
  cursor: pointer;
  box-shadow: 5px 5px 5px 0px #3aa2b2;
}
.redbutton{
  background-color: red;
  color: white;
  box-shadow: 5px 5px 5px 0px rgba(255, 0, 0, 0.229);

}
.redbutton:hover{
  background-color: white;
  color: red;
  box-shadow: 5px 5px 5px 0px red;

}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px; 
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 10px;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}
.material-icons-outlined{
  font-family: 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 10px;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
.vertical-center {
margin: 0;
position: absolute;
}

.paragraph-container {
  display: flex;
  display: inline-block;
}

option{
  cursor:pointer;
}

.sidebar{
  width: 200px;
  height: 100%;
  float: left;
  position: fixed;
  /* background-color: #609db0; */
  background-color: #3aa2b2 !important;
  -webkit-background-color: #3aa2b2 !important;
  -moz-background-color: #3aa2b2 !important;
  -ms-background-color: #3aa2b2 !important;
  -o-background-color: #3aa2b2 !important;
  color: white;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  padding-top: 5px;
}
.sidebar ul{
  list-style-type: none;
  padding: 0;
  margin-left: 10px;
}
.sidebar li{
  padding: 5px;
}
.sidebar a{
  text-decoration: none;
  color: white;
}  


a{
  text-decoration: none;
  cursor:pointer;
}
a:hover{
  font-weight: bold;
}

input[type="checkbox"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background: lightgray;
  height: 30px;
  width: 30px;
  border: 1px solid white;
  color: white;
  vertical-align: middle;
}

input[type="checkbox"]:checked {
  background-color: #3aa2b2;
  border: 1px solid #3aa2b2;
}

input[type="checkbox"]:after {
  content: ' ';
  font-weight:bold;
  position: relative;
  left: 37%;
  top: 13%;
  width: 20%;
  height: 50%;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(50deg);
  display: none;
}

input[type="checkbox"]:checked:after {
  display: block;
}


.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkbox-item {
  position: relative;
  display: inline-block;
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkbox-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-item input[type="checkbox"]:checked + label {
  /* background-color: #366899; */
  background-color: #3aa2b2;;
  color:white;
}


.list-item {
  cursor: pointer;
  list-style-type: none;
  margin-bottom: 10px;
}
.list-item:hover {
  padding-left: 5px;
  font-weight: bold;
}
.arrow {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.arrow.open {
  transform: rotate(90deg);
}
.content {
  display: flex;
  width: 800px;
  flex-wrap: wrap;
  gap: 5px;
}

.red-arrow {
  color: red;
}
.fixed{
  /* A fogkép pontos méretét határozza meg. */
  width:910px; 
  max-width:910px;
  display: inline-block;
}

.kezelesek-table {
  width: 820px;
  border-collapse: collapse;
}

.kezelesek-table th, .kezelesek-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  width: auto;
}

.kezelesek-table th {
 background-color: #3aa2b2;
  color: white;
}

.kezelesek-table tr:nth-child(even) {
  background-color: #f9f9f9;
}


.date-separator {
  margin-top: 30px;
  margin-bottom: 30px;
}
.fog-number {
  border: 1px solid #000;
  padding: 2px 5px;
  margin: 2px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 500;
}

/* A hiányzó fogak kitakarása*/ 
.rectangle {
    content: '';
    position: absolute;
    width: 20px;
    height: 110px;
    left: 0px;
    top: 25px;
    background-color: #e4e2f5;
    opacity: 0.9;
}

/* A fogkép gombok */
.tooth-button {
    background-color: #006b9d;
    background-color: white;
    color: #fff;
    color: #000;
    width:27px;
    height:27px;
    font-size: 12px;
}

.tooth-button:hover {
    background-color: #609db0;
    color: #fff;
    width:27px;
    height:27px;
    font-size: 12px;
}

.tooth-button selected {
    background-color: #006b9d;
    color: white;
}
.blink2 {
  animation: blinker 1.5s linear infinite;
  }
  @keyframes blinker {
      25% { opacity: 0; }
      50% { opacity: 1; }
  }
  .Same{
    display:inline-block;
    margin-top: -10px;
}

/* Páciensek */
.patient-table th, .patient-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.patient-table th {
      background-color: #f2f2f2;
      background-color: #3aa2b2;
      color: white;
      font-weight: bold;
  }
  .patient-table tbody tr:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  width: 900px;
}
.pagination .btn {
  padding: 8px 16px;
  text-decoration: none;
  background-color: #3aa2b2;
  color: white;
  cursor: pointer;
  transition: 0.5s;
  font-weight: bold;
}
.pagination .btn:hover {
  background-color: white;
  color: #3aa2b2;
}
.pagination .btn.disabled {
  background-color: #ddd;
  color: #666;
  cursor: not-allowed;
  border: 1px solid #ddd;
}
.pagination .page-info {
  font-size: 14px;
}
.success { color: green; }
.error { color: red; }

input[type=file]{
  width:300px;
  display: inline-block;
}

input[type=file]::file-selector-button {
  border: none;
  padding: .2em .4em;
  margin-right: 10px;
  background-color:#3aa2b2;
  transition: 0.5s;
  height: 35px;
  color: white;
  font-weight: bold;
  width: 140px;
}

input[type=file]::file-selector-button:hover {
  width: 140px;
  height:35px;
  background-color:white;
  color:#3aa2b2;
  font-weight:bold;
  border:none;
  cursor: pointer;
  box-shadow: 5px 5px 5px 0px #3aa2b2;
}


.inputfile + label {
  font-size: 1.25em;
  font-weight: 700;
  color: white;
  background-color: black;
  display: inline-block;
}

.inputfile:focus + label,
.inputfile + label:hover {
  background-color: red;
}
.inputfile + label {
	cursor: pointer; 
}

#file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.file-item {
  text-align: center;
  width: 70px;
}
.file-thumbnail {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: bottom;
  justify-content: bottom;
}
.file-thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}
.file-description {
  font-size: 12px;
  word-wrap: break-word;
  max-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}
.alsofogak, .felsofogak {
  align-items: center; 
  text-align: center;
}

.tooth-container {
  display: inline-block;
  position: relative;
}

#fogkep {
  height: 150px;
  display: block;
}


.tooth-number {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1000;
}

.tooth-container:hover .tooth-number {
  display: block;
}

.vl {
  border-left: 1px solid #ccc;
  height: 340px;
  position: relative;
  left: 50%;
  margin-left: 0px;
  top: 0;
}


.tooth-hover {
    display: none;
    position: absolute;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tooth-container:hover .tooth-hover {
    display: block;
}

.tooth-hover img {
    width: auto; /* Adjust size as needed */
    /* height: auto; */
    height: 200px;
}
#help{
  cursor: pointer;
  vertical-align: middle;
}

/* Selector szine, 
A select elementnek az osztálya class="form-control select2"
*/
select{
  /* width:400px;
  height:35px !important;
  text-align: left;
  padding-left: 10px; */
}
.select2-container--default .select2-results__option--selected {
  color: #3aa2b2;
  background:rgb(221 221 221 / 32%) !important;
  background-color:#3aa2b2;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3aa2b2 !important;
  color: white;
}

.button-icon{
  vertical-align: middle; 
  margin-right: 10px; 
  width: 20px; 
  height: 20px;
}




#naplo { background-color: #3aa2b2; color: white;}
#naplo:hover{ background-color: white; color: #3aa2b2;}
#naplo img {content: url('img/search_activitywhite.png');}
#naplo:hover img {content: url('img/search_activitygreen.png');}

#paciensek  { background-color: #3aa2b2; color: white;}
#paciensek:hover{ background-color: white; color: #3aa2b2;}
#paciensek img {content: url('img/groupwhite.png');}
#paciensek:hover img {content: url('img/groupgreen.png');}

#ujpaciens{ background-color: #3aa2b2; color: white;}
#ujpaciens:hover{ background-color: white; color: #3aa2b2;}
#ujpaciens img {content: url('img/person_addwhite.png');}
#ujpaciens:hover img {content: url('img/person_addgreen.png');}

#beallitasok{ background-color: #3aa2b2; color: white;}
#beallitasok:hover{ background-color: white; color: #3aa2b2;}
#beallitasok img {content: url('img/settingswhite.png');}
#beallitasok:hover img {content: url('img/settingsgreen.png');}

#rendelobeallitas{ background-color: #3aa2b2; color: white;}
#rendelobeallitas:hover{ background-color: white; color: #3aa2b2;}
#rendelobeallitas img {content: url('img/home_healthwhite.png');}
#rendelobeallitas:hover img {content: url('img/home_healthgreen.png');}

#dokumentumok{ background-color: #3aa2b2; color: white;}
#dokumentumok:hover{ background-color: white; color: #3aa2b2;}
#dokumentumok img {content: url('img/file_white.png');}
#dokumentumok:hover img {content: url('img/file_green.png');}
#kezelesek{
  background-color: #3aa2b2;
  color: white;
}
#kezelesek:hover{
  background-color: white;
  color: #3aa2b2;
}
#kezelesek img {
  content: url('img/syringewhite.png');
}
#kezelesek:hover img {
  content: url('img/syringegreen.png');
}
#kerdoiv{
  background-color: #3aa2b2;
  color: white;
}
#kerdoiv:hover{
  background-color: white;
  color: #3aa2b2;
}
#kerdoiv img {
  content: url('img/sickwhite.png');
}
#kerdoiv:hover img {
  content: url('img/sickgreen.png');
}
#felhasznalok{
  background-color: #3aa2b2;
  color: white;
}
#felhasznalok:hover{
  background-color: white;
  color: #3aa2b2;
}
#felhasznalok img {
  content: url('img/manage_accountswhite.png');
}
#felhasznalok:hover img {
  content: url('img/manage_accountsgreen.png');
}
#archiv{
  background-color: #3aa2b2;
  color: white;
}   
#archiv:hover{
  background-color: white;
  color: #3aa2b2;
}
#archiv img {
  content: url('img/archivwhite.png');
}
#archiv:hover img {
  content: url('img/archivgreen.png');
}

#szamlazasiadatokTovabb{
  background-color: #3aa2b2;
  color: white;
}   
#szamlazasiadatokTovabb:hover{
  background-color: white;
  color: #3aa2b2;
}
#szamlazasiadatokTovabb img{
  content: url('img/arrowwhite.png');
}
#szamlazasiadatokTovabb:hover img {
  content: url('img/arrowgreen.png');
}