body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #152945;
  color: #fff;
}

/* MAIN CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* HEADINGS */
h2 {
  text-align: center;
  color: #64a9ee;
  margin-bottom: 20px;
}

h3 {
  color: #64a9ee;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/* SKR TEXT */
p strong {
  color: #64a9ee;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.08);
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* EACH LINE LIKE TABLE ROW */
.card p {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* REMOVE LAST BORDER */
.card p:last-child {
  border-bottom: none;
}

/* LABEL (LEFT SIDE) */
.card p strong {
  width: 40%;
}

/* VALUE (RIGHT SIDE) */
.card p span {
  width: 60%;
  text-align: right;
}

/* STATUS */
.card:last-of-type {
  text-align: center;
}

.card:last-of-type p {
  justify-content: center;
  border: none;
}

/* BUTTON */
button {
  background: #64a9ee;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  opacity: 0.7;
}

/* CENTER */
.center {
  text-align: center;
  margin-top: 20px;
}

/* ERROR */
.error {
  color: red;
  text-align: center;
}
.logo-container {
  text-align: center !important;
  margin: 10px 0 !important;
}

.logo-container img {
  width: 100px !important;
  max-width: 90% !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
}
/* TABLE */
.table-container {
  margin-top: 10px;
  overflow-x: auto;
}

.shipment-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.07);
}

.shipment-table th {
  background: #64a9ee;
  color: #fff;
  padding: 10px;
  text-align: left;
}

.shipment-table td {
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.shipment-table tr:hover {
  background: rgba(255,255,255,0.08);
}
.view-btn {
  background: #64a9ee;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
}
/* QR CODE */
.qr-container {
  text-align: center;
  margin: 20px 0;
}

.qr-container img {
  width: 100px;
  height: 100px;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
}

.qr-container p {
  margin-top: 5px;
  font-size: 13px;
  color: #ccc;
}
/* SKR NUMBER */
.skr-highlight {
  color: red;
  font-weight: bold;
  font-size: 18px;
}

/* STATUS */
.status-highlight {
  color: lightgreen;
  animation: blink 1s infinite;
  font-weight: bold;
  font-size: 18px;
}

/* REQUIRED */
@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.1; }
  100% { opacity: 1; }
}
input::placeholder,
textarea::placeholder {
  color: #999;
  font-style: italic;
}

/* FORM FIELDS - DESKTOP */
input, textarea, select {
  font-size: 16px;
  padding: 12px 14px;
  margin: 10px 0;
  border-radius: 6px;
}

/* FOOTER */
.footer {
  text-align: center;
  margin-top: 40px;
  padding: 15px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.5);
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #192640;
}

/* MOBILE FORM IMPROVEMENT */
@media (max-width: 600px) {

  input, textarea, select {
    font-size: 16px; /* prevents zoom on iPhone */
    padding: 14px 12px;
    margin: 12px 0;
  }

  textarea {
    min-height: 100px;
  }

  button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

}

/* SIGNATURE ROW */
.signature-row {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

/* LEFT SIGNATURE */
.sign-left {
    width: 45%;
    text-align: center;
}

/* SIGNATURE LINE */
.sign-line {
    border-top: 1px solid #000;
    height: 50px;
    position: relative;
}

/* SIGNATURE IMAGE */
.sign-img {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
}

/* STAMP BOX */
.stamp-box {
    width: 45%;
    height: 70px;
    border: 2px dashed #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* STAMP IMAGE */
.stamp-img {
    max-width: 50%;
    max-height: 50%;
    opacity: 0.85;
}

/* LOGO INDEX */
.logo-container {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.logo-container img {
  max-width: 250px;
  height: 500;
}

@media (max-width: 600px) {
  .logo-container img {
    max-width: 130px;
  }
}