@charset "utf-8";
/* =========================================
   Qualitrace - Forms & Lists (Pro, no images)
   Keeps same class names / structure
========================================= */

/* clickable th */
th.tr {
  cursor: pointer;
  height: 35px;
}

/* red strike values */
.mnt,
#rr {
  text-decoration: line-through;
  font-size: 12px;
  color: #d10f1b;
  font-weight: 700;
}

/* ---------------------------
   Form table
--------------------------- */
table.formulaire {
  float: left;
  width: auto;
  width: 100%;
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 10px 26px rgba(16, 31, 74, .08);
}

/* header th */
table.formulaire tr th,
table.formulaire tr th.az {
  vertical-align: middle;
  background: linear-gradient(180deg, #0b1c4aad, #1b3275);
  color: #ffffff;
  letter-spacing: 1px;
  height: 34px;
  border: none;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

table.formulaire tr th {
  text-align: right;
}

table.formulaire tr th.az {
  text-align: left;
}

table.formulaire tr th img {
  height: 18px;
  width: 18px;
  opacity: .9;
}

/* label cells */
table.formulaire tr td.label {
  vertical-align: middle;
  font-size: 11px;
  text-align: right;
  padding: 10px 10px;
  height: 34px;
  border: none;
  color: #1f2a44;
  white-space: nowrap;
}

/* data cells (if you have normal td) */
table.formulaire tr td {
  padding: 10px 10px;
  border: none;
}

/* ---------------------------
   List table
--------------------------- */
table.liste {
  width: 100%;
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(16, 31, 74, .08);
}

/* list header */
.listehead {
  background: linear-gradient(180deg, #27438f, #1b3275);
  vertical-align: middle;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .4px;
}

/* list rows */
table.liste tr td {
  vertical-align: middle;
  font-size: 11px;
  padding: 9px 10px;
  border: none;
  text-align: left;
  color: #1f2a44;
  border-bottom: 1px solid #edf2fb;
}

/* last row no border */
table.liste tr:last-child td {
  border-bottom: none;
}


/* numeric */
table.liste tr td.nbr {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* highlighted row (old .c2) */
.c2 {
  background: #f2f4fc;
  color: #000;
}

/* ---------------------------
   Inputs & Buttons (Pro)
--------------------------- */
input,
select,
textarea {
  font: 12px Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1f2a44;
  border: 1px solid #cfd8ea;
  border-radius: 6px;
  padding: 7px 10px;
  transition: all .15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2f6fed;
  box-shadow: 0 0 0 3px rgba(47, 111, 237, .14);
}

input[type=checkbox] {
  border: 0;
  padding: 0;
  border-radius: 4px;
}

input[type=image] {
  border: none;
  background: none;
}

/* buttons */
input[type=button],
input[type=submit] {
  padding: 7px 12px;
  border: 1px solid #2f6fed;
  background: #7488af;
  color: #ffffff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 12px;
  border-radius: 6px;
  transition: all .15s ease;
  margin-left: 2px;
}

input[type=button]:hover,
input[type=submit]:hover {
  background: #234fb3;
  border-color: #234fb3;
}

/* optional: smaller compact buttons if you need old look */
input.btn-sm {
  padding: 5px 10px;
  font-size: 11px;
}

/* ---------------------------
   Minor helpers
--------------------------- */
#rr {
  display: inline;
}