@charset "utf-8";
/* CSS Document */

body {
  font-family: Fjalla One;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card {
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.02);
}
.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-body .card-text {
  margin-bottom: 0;
}
.result-success {
  background-color: #d4edda;
  color: #155724;
}
.result-fail {
  background-color: #f8d7da;
  color: #721c24;
}

/* *********** */
.result-container {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.result-container:hover {
  transform: scale(1.02);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.result-header {
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background-color: #007bff;
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.result-body {
  padding: 1rem;
  border-radius: 0.5rem;
}
.result-accepted {
  background-color: #d4edda;
  color: #155724;
}
.result-waitlist {
  background-color: #ffeeba;
  color: #856404;
}
.result-rejected {
  background-color: #f8d7da;
  color: #721c24;
}
.result-icon {
  margin-right: 0.5rem;
}
