:root {
    --primary-color: #0A0609;
    --secondary-color: #D29133;
    --text-color: #D29133;
    --border-box-color: #1C0A05;
    --font-family:sans-serif;
}


table {
    font-family: var(--font-family);
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

table td, table th {
    border: 1px solid #ddd;
    padding: 8px;
}

table tr:nth-child(even){background-color: #f2f2f2;}

table tr:hover {background-color: #ddd;}

table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    font-size: 13px;
    font-family: var(--font-family);
}

table td{
    font-size: 12px;
}

/* css para el mensaje de alerta*/
/*.alert {
    padding: 10px;
    background-color: #ddffdd!important;
    color: black;
    border-radius: 8px

}*/

.closebtn {
    margin-left: 12px;
    color: black;
    font-weight: bold;
    float: right;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

thead tr th { 
    position: sticky;
    top: 0;
    z-index: 10;
}

.table-responsive { 
    height:200px;
    overflow:scroll;
}


.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  padding: 10px 10px;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
  padding: 10px 10px;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
  padding: 10px 10px;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  padding: 10px 10px;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
input:focus {
      border: 1px solid var(--primary-color);
}
select:focus {
      border: 1px solid var(--primary-color);
}