/* Alert colors from http://clrs.cc */
.alert-ok {
  margin: 15px 0px 15px 0px;
  border: 1px solid #3D9970;
  padding: 10px;
  color: #3D9970;
}
.alert-warning {
  margin: 15px 0px 15px 0px;
  border: 1px solid #FF851B;
  padding: 10px;
  color: #FF851B;
}
.alert-error {
  margin: 15px 0px 15px 0px;
  border: 1px solid #FF4136;
  padding: 10px;
  color: #FF4136;
}
.alert-info {
  margin: 15px 0px 15px 0px;
  border: 1px solid #0074D9;
  padding: 10px;
  color: #0074D9;
}

/* Button colors */
.button-ok, .button-ok:focus {
  background-color: #3D9970;
}
.button-ok:hover {
  background-color: #368a64;
}
.button-error, .button-error:focus {
  background-color: #FF4136;
}
.button-error:hover {
  background-color: #eb3b32;
}

/* Labels */
.label {
  font-size: 70%;
  font-weight: bold;
  text-transform: uppercase;
  padding: 2px 5px 2px 5px;
  border-radius: 5px;
}
.label-green { background-color: #3D9970; color: #D2EDE1; }
.label-orange { background-color: #FF851B; color: #FFE5CE; }
.label-red { background-color: #FF4136; color: #FFD7D4; }
.label-blue { background-color: #0074D9; color: #C1E2FF; }
.label-purple { background-color: #B10DC9; color: #F4C3FB; }
.label-maroon { background-color: #85144B; color: #F5BCD8; }
.label-teal { background-color: #39CCCC; color: #D4F4F4; }

/* Align text */
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

/* Text overflow with ellipsis */
.table-text-overflow {
  width: 100%;
}
.table-text-overflow th, .table-text-overflow td {
  max-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Float elements */
.float-left {
  float: left;
}
.float-right {
  float: right;
}

