a:link {
  text-decoration: none;
}

#table_history {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  background-color: #232323;
  color: #e0e0e0;
}

#table_history td, #table_history th {
  border: 1px solid #444;
  padding: 8px;
}

#table_history tr:nth-child(even) {
  background-color: #2c2c2c;
}

#table_history tr:hover {
  background-color: #333;
}

#table_history th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #ee7322;
  color: #fff;
}

.pagination {
  display: inline-block;
}

.pagination a {
  color: #e0e0e0;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  border: 1px solid #444;
  margin: 0 4px;
  background-color: #232323;
}

.pagination a.active {
  background-color: #ee7322;
  color: #fff;
  border: 1px solid #ee7322;
}

.pagination a:hover:not(.active) {background-color: #ee7322;}

.vertical-menu {
  border: none;
  border-radius: 12px;
  background: #232323;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  width: 240px;
  padding: 12px 0;
}

.vertical-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vertical-menu a {
  display: flex;
  align-items: center;
  color: #a0a9b3;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.vertical-menu a:hover, .vertical-menu a.active {
  background: #f2f2f2;
  color: #000;
}

.profile-summary {
  background-color:#232323;
  border-radius:8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  max-width: 400px;
  margin: 20px 0 30px 0;
  padding: 24px 28px 18px 28px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.profile-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.05em;
}

.profile-label {
  font-weight: 400;
  color: #a0a9b3;
  font-weight: bold;
}

.profile-value {
  font-weight: 500;
  color: #7b828a;
}

.profile-link {
  display: inline-block;
  margin-top: 8px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.profile-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-control {
    background: #181a20;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 8px;
}

.btn-primary, .btn-secondary {
    background: #acacacff;
    color: #181a20;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover, .btn-secondary:hover {
    background: #e67e22;
}

img.img-thumbnail {
    background: #23272f;
    border: 2px solid #444;
    border-radius: 8px;
    margin: 10px;
    transition: transform 0.2s;
}

img.img-thumbnail:hover {
    transform: scale(1.05);
    border-color: #ee7322;
}

select.form-control {
    background: #23272f;
    color: #e0e0e0;
    border: 1px solid #444;
}

form {
    margin-bottom: 20px;
}