/* ==========================================================================
   VisaVerify Portal - VEVO Style Classic Layout
   ========================================================================== */

:root {
  --bg-primary: #cfd6df;
  --bg-card: #ffffff;
  --bg-header: #001f3f;
  --bg-bar: #0d2a4a;
  --text-main: #000000;
  --text-muted: #555555;
  --primary-blue: #003366;
  --primary-hover: #002244;
  --border-color: #b0bec5;
  --font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.5;
  font-size: 14px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #003366;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Independent Disclaimer Banner */
.disclaimer-banner {
  background: #fff3cd;
  color: #856404;
  border-bottom: 1px solid #ffeeba;
  padding: 6px 15px;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

/* Top Header Bar */
.vevo-header {
  background: var(--bg-header);
  color: #ffffff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #0056b3;
  min-height: 90px;
}

.vevo-header-left {
  display: flex;
  align-items: center;
}

.vevo-logo-img {
  max-height: 80px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.vevo-logo-icon {
  width: 55px;
  height: 55px;
  fill: none;
  stroke: #64b5f6;
  stroke-width: 2;
}

.vevo-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.vevo-header-right .top-help-link {
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: bold;
}

.vevo-header-right .top-help-link a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

.vevo-header-right .vevo-portal-name {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

/* Main Container */
.main-wrapper {
  flex: 1;
  width: 100%;
  max-width: 100%;
  margin: 15px 0;
  padding: 0 25px;
}

/* Enquiry Panel Container */
.enquiry-panel {
  background: var(--bg-card);
  border: 1px solid #888;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  width: 100%;
}

.enquiry-panel-header {
  background: var(--bg-bar);
  color: #ffffff;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: bold;
}

.enquiry-panel-body {
  padding: 20px;
}

.enquiry-instructions {
  margin-bottom: 20px;
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.5;
  font-weight: normal;
}

.req-star {
  color: #d9534f;
  font-weight: bold;
  margin-right: 3px;
}

/* Form Layout */
.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form-label-col {
  width: 220px;
  font-weight: bold;
  font-size: 14px;
  color: #000000;
  flex-shrink: 0;
}

.form-input-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.select-md {
  max-width: 260px;
}

.input-lg {
  max-width: 380px;
}

.input-sm {
  max-width: 180px;
}

.form-control, .form-select {
  width: 100%;
  padding: 4px 8px;
  font-size: 13.5px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #767676;
  border-radius: 2px;
  outline: none;
}

.form-control:focus, .form-select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 3px rgba(0, 86, 179, 0.5);
}

.help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #0056b3;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  flex-shrink: 0;
}

/* Form Action Bar */
.form-action-bar {
  background: #f2f2f2;
  border: 1px solid #d0d0d0;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.btn-vevo {
  padding: 3px 16px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid #707070;
  background: #e1e1e1;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-vevo:hover {
  background: #d4d4d4;
}

.btn-vevo-submit {
  background: #e1e1e1;
  border: 1px solid #666;
  font-weight: bold;
}

/* VEVO Details Screen Row Layout matching Screenshot */
.vevo-detail-row {
  display: flex;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 14px;
}

@media (max-width: 768px) {
  .vevo-detail-row {
    flex-direction: column;
  }
}

.vevo-detail-label {
  width: 280px;
  font-weight: normal;
  color: #000000;
  flex-shrink: 0;
}

.vevo-detail-val {
  flex: 1;
  color: #000000;
  word-break: break-word;
}

/* Verification Result Card */
.result-box {
  display: none;
  margin-top: 20px;
}

.result-card {
  border: 2px solid #0056b3;
  background: var(--bg-card);
  padding: 20px;
  border-radius: 2px;
}

.result-card.success {
  border-color: #28a745;
}

.result-card.danger {
  border-color: #dc3545;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.result-table th, .result-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  font-size: 13.5px;
}

.result-table th {
  width: 30%;
  background: rgba(0, 0, 0, 0.04);
  font-weight: bold;
}

/* Footer Navigation Bar matching exact screenshot */
.vevo-footer-nav {
  background: #ebebeb;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #b8b8b8;
  padding: 12px 25px;
  font-size: 14px;
  margin-top: auto;
  width: 100%;
}

.vevo-footer-container {
  width: 100%;
  max-width: 100%;
}

.vevo-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.vevo-footer-links li a {
  color: #003366;
  text-decoration: underline;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
}

.vevo-footer-links li.sep {
  color: #222222;
  font-weight: bold;
  font-size: 14px;
  user-select: none;
}
