.img-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.table td,
.table th {
  background-color: white;
}

html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
  margin-top: 0;
}

/* Mejoras sutiles */
.header-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 3px solid #d16300;
  padding: 3rem 0;
}

.accepted-papers-badge {
  background: #d16300;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(209, 99, 0, 0.2);
}

.badge-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  float: right;
  margin-left: 20px;
  margin-bottom: 1rem;
}

.conference-title {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: left;
}

.conference-details {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}

.conference-details a {
  color: #d16300;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.conference-details a:hover {
  color: #a84d00;
  text-decoration: underline;
}

.table-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.table-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.table {
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
}

.table thead th {
  background-color: #f8f9fa;
  color: #495057;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  border-bottom: 2px solid #d16300;
  padding: 1rem;
}

.table tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-color: #e9ecef;
  transition: background-color 0.2s ease;
}

.table tbody tr:hover td {
  background-color: #f1f3f4;
}

.table tbody tr:nth-child(even) {
  background-color: #fafbfc;
}

.table tbody tr:nth-child(even):hover td {
  background-color: #f1f3f4;
}

/* Responsividad mejorada */
@media (max-width: 768px) {
  .badge-logo-container {
    float: none;
    margin: 0 auto 2rem auto;
  }

  .header-section {
    padding: 2rem 0;
  }

  .conference-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .conference-details {
    text-align: center;
  }
}
