* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Avenir LT Pro';
  background: #000046;
  min-height: 100vh;
  color: #ffffff;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  /*background: white;*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #1a1a2e 2px, transparent 2px);
  background-size: 6px 6px;
}

.logo-text {
  font-weight: 600;
  font-size: 18px;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #e91e63;
  color: white;
}

.btn-primary:hover {
  background: #E60073;
  opacity: 50%;
}

.cart {
  background: #e91e63;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart::after {
  content: '0';
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4081;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.tracking-form {
  background: white;
  color: #333;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.tracking-form h2 {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #000046;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.track-btn {
  background: #E60073;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.track-btn:hover {
  background: #E60073;
  opacity: 50%;
}

.help-link {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.help-link a {
  color: #e91e63;
  text-decoration: none;
}

.tracking-result {
  display: none;
  background: #f5f3fc;
  color: #333;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 600px;
}

.delivery-status {
  text-align: center;
  margin-bottom: 30px;
}

.package-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #4caf50;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.package-icon::before {
  content: '📦';
  font-size: 40px;
}

.package-icon::after {
  content: '✓';
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #000046;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.delivery-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.delivery-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.detail-group h4 {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-group p {
  font-size: 16px;
  font-weight: 400;
  color: #000046;
  margin: 0;
}

.tracking-history {
  border-top: 2px solid #eee;
  padding-top: 30px;
}

.tracking-history h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.history-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.history-item:last-child {
  border-bottom: none;
}

.history-timeline {
  width: 4px;
  height: 60px;
  background: #4caf50;
  border-radius: 2px;
  margin-top: 5px;
}

.history-content h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 4px;
  color: #000046;
  text-align: left;
}

.history-content p {
  color: #666;
  font-size: 14px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.history-date {
  font-weight: 400;
  color: #666;
  margin: 0 0 6px;
  text-align: left;
}

.history-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.back-btn {
  background: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.back-btn:hover {
  background: #e91e63;
  color: white;
}

.footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  flex-shrink: 0;
}

.footer-text {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 14px;
}

.footer-text span {
  color: inherit;
}

.error-message {
  background: #ffebee;
  color: #c62828;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  display: none;
}

@media (max-width: 768px) {
  .header {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .nav-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .tracking-form, .tracking-result {
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .delivery-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.track-btn {
  background: #E60073;
}

#trackingForm {
  background: #f5f3fc;
}

h2 {
  color: #000046;
}

label {
  color: #000046;
}

span {
  color: #000046;
}

a {
  color: #e60073;
}

div {
  text-align: center;
}

.tracking-history {
  text-align: left;
}

.tracking-history h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.tracking-history .history-item,
.tracking-history .history-content,
.tracking-history .history-date,
.tracking-history p {
  text-align: left;
}

html {
  background: transparent;
}

.header {
  background: transparent;
}

img {
  margin-left: 20px;
  margin-top: 20px;
}

.btn {
  width: 125px;
  font-size: 14px;
  margin: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.btn {
  font-size: 14px;
  width: 125px;
}

.btn.is-loading {
  pointer-events: none;
}

p {
  color: #ffffff;
  margin: 0px;
  margin-bottom: 0px;
  padding: 20px;
}

#trackingNumber {
  background: transparent;
}

#trackingForm {
  text-align: left;
}

.main-container {
  border-color: var(--bs-gray-800);
}

.btn {
  margin-left: 0px;
}

