.converter-container {
  max-width: 800px;
  margin: 60px auto 0; /* Top margin added here */
  padding: 40px 20px;
  background: var(--card-bg, #fff);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}


body.dark-mode .converter-container {
  background: #1e1e1e;
  color: #eee;
}

.converter-container h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 25px;
}

body.dark-mode .converter-container h2 {
  color: #fff;
}

.converter-container label {
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

.converter-container select,
.converter-container input[type="datetime-local"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
}

body.dark-mode .converter-container select,
body.dark-mode .converter-container input[type="datetime-local"] {
  background: #2b2b2b;
  color: #fff;
  border-color: #555;
}

.converter-container input[type="submit"] {
  background: #003366;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
}

.converter-container input[type="submit"]:hover {
  background: #005499;
}

/* Result Box Styles */
.output-box {
  background: #f0f8ff;
  border-left: 6px solid #003366;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  transition: background 0.3s;
  position: relative;
  margin: 30px auto 0;
  text-align: center;
}

body.dark-mode .output-box {
  background: #2e2e2e;
  border-left-color: #66aaff;
  color: #fff;
}

.output-box .icon {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
}

.output-box .text {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5;
}

.output-box .text .zone {
  color: #003366;
  font-weight: bold;
}

body.dark-mode .output-box .text .zone {
  color: #66aaff;
}

.output-box .arrow {
  font-size: 24px;
  color: #999;
  margin: 10px 0;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.copy-share {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.copy-share button {
  padding: 6px 12px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.copy-share button:hover {
  background: #005499;
}

.clock-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.clock-box {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

body.dark-mode .clock-box {
  background: #1a1a1a;
  color: #eee;
}

/* === Branding Icon (NEW) === */
.output-box .branding-icon {
  font-size: 1.2rem;
  font-weight: 600;
  color: #004080;
  background: #e6f0ff;
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 0 auto 15px;
  font-family: 'Segoe UI', sans-serif;
  transition: background 0.3s, color 0.3s;
  text-align: center;
}

.output-box .branding-icon span {
  color: #003366;
}

body.dark-mode .output-box .branding-icon {
  background: #1e1e1e;
  color: #ffffff;
}

body.dark-mode .output-box .branding-icon span {
  color: #ffffff;
}

/* Static Back Button (Bottom-Center) */
.back-btn-static {
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 30px auto;
  display: block;
  text-align: center;
}
.back-btn-static:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
body.dark-mode .back-btn-static {
  background: #1e3a8a;
}
body.dark-mode .back-btn-static:hover {
  background: #3b82f6;
}