*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1b24;
  --secondary-color: #f5f5f5;
  --h1-size: 1.50rem;
  --h2-size: 1.5rem;
  --h3-size: 1.25rem;
  --hfnt-width: 300;
  --font-color: #cacaca;
  --h1-color-1: #a1a1a1;
  --h1-color-2: #bebebe;
}

html,
body {
  height: 100%;
}

body {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  font-family: 'Inter', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: var(--primary-color);
  color: var(--font-color);
  font-size: 14px;
  justify-content: flex-start;
  align-items: center;
  gap: 28px;
}

h1 {
  font-size: var(--h1-size);
  color: var(--h1-color-1);
}

h1,
h2,
h3 {
  text-align: center;
  font-weight: var(--hfnt-width);
}

.log-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  flex: 1 100%;
}

.log-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 6px;
  background: #272933;
  height: max-content;
  box-shadow: 0 16px 26px -10px #00000073, -1px 1px 0 0 #161c3a, 1px -1px 0 0 #393e54;
}

.log-container form input:is([type="text"], [type="password"]) {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: none;
  border-radius: 6px;
  background-color: #c5c7d2;
}

.btn_gen {
  background-color: #1d202d;
  outline: 2px solid #2e3143;
  color: var(--font-color);
  border: none;
  border-radius: 6px;
  padding: 21px 63px;
  margin: 12px 0;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.btn_gen:hover {
  background-color: #232738;
}

header {
  display: flex;
  padding: 20px;
  flex-direction: row;
  align-items: center;
  flex: 0 auto;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 2px solid #48413a;
}

footer {
  display: flex;
  justify-content: center;
  padding: 20px;
  flex-direction: row;
  align-items: center;
  flex: 0 auto;
  font-size: .7rem;
  color: #ddd;
}

.logo {
  width: 42px;
}

.menuTop {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.menuTop a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: var(--font-color);
  text-decoration: none;
  transition: all .3s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.menuTop a:hover {
  text-shadow: 0 0 10px #d3d3d3;
}

/* Defiición del contendor main */
.main {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 320px;
  max-width: 800px;
  width: 100%;
  flex: 1 100%;
  background-color: #23242c;
  border-radius: 7px;
  padding: 21px;
}

.data_container {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-width: 320px;
  max-width: 800px;
  width: 100%;
  flex: 1 100%;
}

.data_container h1 {
  color: var(--h1-color-2);
}

.panel_btns {
  display: flex;
  position: relative;
  margin: 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  list-style: none;
  text-decoration: none;
  padding: 21px;
  max-width: 600px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #1a1c23;
  box-shadow: 0 24px 28px -16px #00000033;
  outline: 2px solid #272931;
  border-radius: 4px;
}

.panel_btns a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 42px 21px;
  color: var(--font-color);
  text-decoration: none;
  transition: all .3s ease-in-out;
  flex: 1 auto;
  width: 256px;
  background-color: #303137;
  border-radius: 4px;
}

hr {
  position: relative;
  width: 100%;
  border: none;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #1a1a1a;
}

.espacH_70 {
  margin: 35px auto;
}

#return_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transition: all 200ms ease;
}

#return_btn:hover {
  transform: scale(1.2);
}

#return_btn:active {
  transform: scale(.8);
}

#top-return-btn {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 34px;
  height: 34px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

#top-return-btn:active {
  transform: scale(.9);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.catalog_3_cols {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  user-select: none;
  padding: 0;
  width: 100%;
}

.catalog_3_cols li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-width: 300px;
  max-width: 500px;
  width: 100%;
}

.catalog_3_cols span {
  padding: 7px;
}

.catalog_3_cols span a {
  text-decoration: none;
  color: var(--font-color);
}

.catalog_3_cols li:nth-child(odd) {
  background-color: #272931;
}

.catalog_3_cols span:nth-child(1) {
  padding-right: 7px;
  text-align: right;
  flex: 0 41px;
}

.catalog_3_cols span:nth-child(2) {
  padding-left: 7px;
  text-align: left;
  border-left: 1px solid #323232;
  flex: 0 1 80%;
}

.catalog_3_cols span:nth-child(3) {
  padding: 0 10px;
}

.catalog_3_cols span:nth-child(4) {
  width: 49px;
}

.edit_frm {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.edit_frm input[type="text"] {
  flex: 1 auto;
  padding: 12px;
}


.btn_lateral {
  background-color: #7d5309;
  color: var(--font-color);
  border: none;
  border-radius: 0;
  padding: 14px;
  margin: 0;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.btn_lateral:hover {
  background-color: #d18d17;
  color: #000;
}

.confirmacion_icon {
  position: absolute;
  top: 70px;
  left: 98px;
  width: 24px;
  height: 24px;
  background-color: #1fe26d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

#add_btn {
  display: flex;
  position: absolute;
  right: 0;
  top: -30px;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: transparent;
  color: #44a110;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
}

#add_btn:hover {
  color: #5afa00;
  text-shadow: 0 0 20px #5bff003b;
}

.highlighted {
  background-color: #7d5000 !important;
  transition: background-color 0.5s ease;
  text-shadow: -2px 2px 0 BLACK;
}

#buscador {
  display: block;
  position: fixed;
  left: 2%;
  top: 163px;
  padding: 14px;
  width: 49px;
  border-radius: 40px;
  transition: all .3s ease-in-out;
  background-color: #ffffff17;
  color: var(--font-color);
  backdrop-filter: blur(10px);
}

#buscador:active {
  width: 200px;
}

#buscador:focus {
  width: 200px;
  outline: none;
}

/* ===================== */
/*    Responsive Menu    */
/* ===================== */

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--font-color);
  border-radius: 3px;
}

@media (max-width: 900px) {
  header {
    justify-content: space-between;
    padding: 15px 20px;
  }

  .logo {
    order: 2;
  }

  .hamburger {
    display: block;
    order: 1;
  }

  /* Hamburger Animation */
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Off-canvas Menu */
  #mainNav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #22242c;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    user-select: none;
    padding-right: 34px;
  }

  #mainNav.active {
    left: 0;
  }

  .menuTop {
    flex-direction: column;
    width: 100%;
    gap: 0;
    user-select: none;
  }

  .menuTop li {
    width: 100%;
  }

  .menuTop a {
    padding: 20px;
    width: 100%;
    justify-content: flex-start;
    padding-left: 40px;
    border-bottom: 1px solid #323232;
    user-select: none;
  }

  .menuTop a:hover {
    background-color: #1a1c23;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
}

form#editUser {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form#editUser div {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

form#editUser div input,
form#editUser div select {
  min-width: 245px;
  height: 35px;
}

form#editUser div input[type="date"] {
  min-width: 245px;
  height: 35px;
}

form#editUser div input[type="tel"] {
  min-width: 245px;
  height: 35px;

}

form#editUser select {
  min-width: 245px;
  height: 49px;
  padding: 10px;
}

#copyToClipboard {
  display: inline-block;
  padding: 7px 28px;
  background-color: #373a47;
  cursor: pointer;
  border-radius: 6px;
}

.conf_icon {
  width: 21px;
  height: 21px;
  opacity: .7;
  transition: all .3s ease-in-out;
}

.conf_icon:hover {
  opacity: 1;
  transform: rotate(22.5deg);
}

.tooltip_visible {
  display: block;
  max-width: 400px;
  padding: 14px;
  background-color: #322424;
  color: var(--font-color);
  border-radius: 6px;
  text-align: center;
  position: relative;
  font-size: 80%;
}

#id_compuesto {
  display: block;
  font-size: 3rem;
  text-align: center;
}

.dashboard-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-card {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#fecha_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #272931;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#dia_fecha {
  font-size: 3rem;
  font-weight: bold;
}

#clock_card {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #272931;
}

#clock_time {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

#clock_ampm {
  position: absolute;
  bottom: 20px;
  font-size: 1rem;
  color: var(--h1-color-1);
  text-transform: uppercase;
}

/* Sección de Operaciones */

/* Contenedor para scroll horizontal en tablas */
.table-wrapper {
  display: flex;
  width: 100%;
  overflow-x: auto;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: center;
  padding-bottom: 20px;
}

table.operaciones {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
}

table.operaciones tr:nth-child(even) {
  background-color: #1f2028;
}

table.operaciones th,
table.operaciones td {
  border: 1px solid #1a1b25;
  padding: 8px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

table.operaciones td:nth-child(1) {
  min-width: 35px;
  max-width: 49px;
  text-align: center;
  width: min-content;
}

table.operaciones td:nth-child(3) {
  width: max-content;
}

table.operaciones td:nth-child(4) {
  width: max-content;
}

table.operaciones td:nth-child(5),
table.operaciones th:nth-child(5) {
  width: 70px;
  text-align: center;
}

table.operaciones td:nth-child(6),
table.operaciones th:nth-child(6),
table.operaciones td:nth-child(2),
table.operaciones th:nth-child(2) {
  width: 105px;
  text-align: center;
}

table.operaciones th {
  background-color: #1a1b25;
}

table.operaciones th:nth-child(1) {
  text-align: center;
}

table.operaciones th:nth-child(1) img {
  width: 14px;
  height: 14px;
}

table.operaciones td:nth-child(1) a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--h1-color-1);
  text-decoration: none;
  transition: all .3s ease-in-out;
  width: 100%;
  height: 100%;
}

table.operaciones td:nth-child(1) a:hover {
  color: #ffffff;
  font-weight: bold;
}

table.operaciones tr.cancelada td {
  text-decoration: line-through;
  color: #b04444;
  opacity: 0.7;
}

/* Barra de busqueda en operaciones */

.catalog_search {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  width: 100%;
  height: 70px;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto 7px auto;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

.catalog_search div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  list-style: none;
  user-select: none;
  padding: 0;
  height: 70px;
  flex: 0 1;
  flex-wrap: nowrap;
}

.catalog_search label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
  list-style: none;
  user-select: none;
  padding: 0;
  width: 18px;
  height: 18px;
}

.catalog_search label img {
  width: 18px;
  height: 18px;
}

.catalog_search input {
  height: 35px;
  border-radius: 4px;
  color: #eaeaea;
  background-color: #47484a;
  text-align: center;
  border: none;
  outline: none;
}

.catalog_search div:nth-child(1) input {
  width: 120px;
}

.catalog_search div:nth-child(2) input {
  width: 50px;
}

.catalog_search div:nth-child(3) input {
  flex: 120px;
}

.alert_box {
  background-color: #5f2218;
  text-align: center;
  font-size: 100%;
  padding: 21px;
  border-radius: 6px;
  color: #ffffff;
  border: 2px solid #853d30;
  box-shadow: 0 16px 26px -10px #00000073, -1px 1px 0 0 #161c3a, 1px -1px 0 0 #393e54;
}

/** Formulario de edición de autos y autocompletado */

#edAu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

#edAu input {
  padding: 14px;
  /* border: 1px solid #ccc; */
  border-radius: 5px;

}

/* Estilos para el autocompletado */
.autocomplete-wrapper {
  position: relative;
  width: 100%;
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 7px 7px 7px;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
  box-shadow: 0 20px 23px -16px #000000bf;
  display: none;
}

.autocomplete-list.active {
  display: block;
}

.autocomplete-list li {
  padding: 14px 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  background-color: #ffffff;
  color: #000000;
  border-bottom: 1px solid #eeebeb;
}

.autocomplete-list li:hover,
.autocomplete-list li.active {
  background-color: #f0f0f0;
}

.autocomplete-list li:active {
  background-color: #e0e0e0;
}

/* Mensajes de feedback */
.mensaje {
  padding: 14px 20px;
  margin: 20px 0;
  border-radius: 7px;
  font-weight: 600;
  text-align: center;
  max-width: 500px;
  margin: 20px auto;
}

.mensaje.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.mensaje.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Details - Cajones de información */

.instrucciones_cont {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #262933;
  padding: 28px;
  border-radius: 6px;
  outline: 2px solid #2e3143;
  transition: all .3s ease-in-out;
}

.instrucciones_cont summary {
  cursor: pointer;
  color: var(--font-color);
  font-weight: 600;
}

.instrucciones_cont summary:hover {
  text-shadow: 0 0 10px #d3d3d3;
}

.instrucciones_cont summary[open]::after {
  transform: rotate(180deg);
}

.instrucciones_cont p {
  margin: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a83434;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #711a1a;
  /* Red sphere when inactive */
  outline: 1px solid #b14e4e;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

input:checked+.toggle-slider {
  background-color: #2196F3;
}

input:checked+.toggle-slider:before {
  transform: translateX(26px);
  background-color: #13497b;
  outline: 1px solid #768ad9;
  box-shadow: 0 0px 9px #000000;
}

/* Optional: Add a focus style */
input:focus+.toggle-slider {
  box-shadow: 0 0 1px #2196F3;
}

/* Administación de documentos subidos | Inspector de documentos */

#busqueda_VIN {
  display: flex;
  min-width: 360px;
  max-width: 480px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#busqueda_VIN input[type="search"] {
  width: 100%;
  padding: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 16px;
}

#documentos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.docs_container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 10px;
  background-color: #2a2d37;
  min-width: 360px;
  max-width: 480px;
  width: 100%;
}

.doc_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.doc_item span {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #373943;

}

.doc_item span:nth-child(1) {
  width: 40%;
  text-align: left;
  padding-left: 20px;
  border-right: 1px solid #373943;
}

.doc_item span:nth-child(2) {
  width: 50%;
  text-align: left;
  padding-left: 20px;
  border-right: 1px solid #373943;
}

.doc_item span:nth-child(3) {
  width: 10%;
  text-align: center;
  padding: 0;
}

.doc_item span:nth-child(1) a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: color 200ms ease;
}

.doc_item span:nth-child(1) a:hover {
  color: #a7cdeeff;
}

.doc_item span:nth-child(3) a {
  display: block;
  width: 100%;
  height: min-content;
  text-decoration: none;
  line-height: .9;
  color: #fff;
  cursor: pointer;
  transition: color 400ms cubic-bezier(0.78, 0.11, 0.33, 0.91);
  font-size: 137%;
  padding: 14px 0;
}

.doc_item span:nth-child(3) a:hover {
  color: #db5050ff;
}

.col_title {
  padding: 21px;
  border-bottom: 1px solid #373943;
  width: 100%;
  text-align: center;
  font-weight: 600;
  background-color: #1a1b22;
}

/* Modal del doc_viewer */
#doc_viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#doc_viewer img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
}

#doc_viewer button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px;
  cursor: pointer;
}

#doc_viewer button:hover {
  background-color: #ccc;
}

#doc_viewer button:active {
  background-color: #999;
}

/* Toasters */
.toaster {
  visibility: hidden;
  min-width: 300px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1001;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 17px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.toaster.show {
  visibility: visible;
  opacity: 1;
  /* Asegurar visibilidad */
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}

/* Clase específica para auto-ocultar (éxito) */
.toaster.autohide {
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animaciones para toaster de éxito (auto-hide) */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

/* Toaster de confirmación (sin fadeout automático) */
#toaster_confirm.show {
  /* Solo fadein, heredado de .toaster.show */
}

#toaster_confirm button {
  margin: 0 10px;
  padding: 5px 10px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  font-weight: bold;
}

#btn_confirm_delete {
  background-color: #d9534f;
  color: white;
}

#btn_cancel_delete {
  background-color: #f0ad4e;
  color: white;
}