/* ═══════════════════════════════════════════════════════════
   THEME STYLES — ARC Naval POS System
   Combines User's Figma Login UI + Integrated Dashboard Navy Aesthetic
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
  /* Dashboard Theme Variables mapped to the Navy aesthetic */
  --bg-base: #030d06;
  --bg-surface: rgba(10, 31, 16, 0.75);
  
  --brand-primary: #4a8c35;
  --brand-hover: #3a8c2f;
  
  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.7);
  
  --border-color: rgba(74, 140, 53, 0.35);
  
  --danger: #ff8888;
  --success: #6ecf64;
  --warning: #f59e0b;

  --transition: all 0.2s ease-in-out;
  --radius-lg: 20px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* ── Keyframes ── */
@keyframes login-orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -60px) scale(1.1); }
}
@keyframes login-orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, 40px) scale(0.9); }
}
@keyframes login-orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, 60px) scale(1.05); }
}
@keyframes login-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes login-ring-spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes login-card-in {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes login-pulse-glow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@keyframes login-spinner-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes login-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

/* ─────────────────────────────────────────────────────────
   LOGIN PAGE STYLES (From Figma Code Provided)
   ───────────────────────────────────────────────────────── */
.login-root {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #030d06;
  overflow: hidden;
  z-index: 9999;
}

.login-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.login-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.login-bg-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #1a7a3c 0%, #0d3b1f 70%, transparent 100%);
  top: -120px; left: -80px;
  animation: login-orb-float-1 12s ease-in-out infinite;
}
.login-bg-orb-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, #2d6a4f 0%, #143322 70%, transparent 100%);
  bottom: -100px; right: -60px;
  animation: login-orb-float-2 15s ease-in-out infinite;
}
.login-bg-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #3a8c2f 0%, #1a4020 70%, transparent 100%);
  top: 50%; right: 20%;
  animation: login-orb-float-3 10s ease-in-out infinite;
}

.login-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.login-topbar {
  position: relative;
  z-index: 2;
  background: rgba(5, 20, 10, 0.85);
  border-bottom: 1px solid rgba(74, 140, 53, 0.3);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.login-topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.login-topbar-brand {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.login-anchor-icon { color: #4a8c35; flex-shrink: 0; }

.login-topbar-clock {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
}

.login-clock-date { color: rgba(255,255,255,0.55); }
.login-clock-sep  { color: rgba(255,255,255,0.2); }
.login-clock-time { color: #6ecf64; font-weight: 700; letter-spacing: 0.05em; }

.login-main {
  position: relative; flex: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; padding: 24px 16px;
}

.login-side {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.login-side-left  { left: 12%; }
.login-side-right { right: 12%; }

.login-side-line {
  width: 1px; height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(74,140,53,0.4), transparent);
}
.login-side-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4a8c35; opacity: 0.6;
  animation: login-pulse-glow 2s ease-in-out infinite;
}

.login-card {
  position: relative;
  background: rgba(10, 31, 16, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(74,140,53,0.35);
  border-radius: 20px;
  padding: 36px 40px 28px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(26,122,60,0.12);
  animation: login-card-in 0.6s cubic-bezier(0.22, 0.9, 0.36, 1) both;
}

.login-card-glow {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, #4a8c35, transparent);
  border-radius: 999px;
  animation: login-pulse-glow 3s ease-in-out infinite;
}

.login-badge {
  position: relative; width: 80px; height: 80px;
  margin: 0 auto 20px; display: flex;
  align-items: center; justify-content: center;
}
.login-badge-ring {
  position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid transparent;
}
.login-badge-ring-outer {
  border-color: rgba(74,140,53,0.6) transparent transparent rgba(74,140,53,0.3);
  animation: login-ring-spin 4s linear infinite;
}
.login-badge-ring-inner {
  inset: 8px;
  border-color: rgba(110,207,100,0.4) transparent rgba(110,207,100,0.2) transparent;
  animation: login-ring-spin-rev 3s linear infinite;
}
.login-badge-core {
  position: relative; width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a7a3c 0%, #0d3b1f 100%);
  border: 1px solid rgba(74,140,53,0.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(26,122,60,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.login-shield-icon {
  color: #6ecf64; filter: drop-shadow(0 0 6px rgba(110,207,100,0.5));
}

.login-heading { text-align: center; margin-bottom: 8px; }
.login-title {
  font-size: 2.2rem; font-weight: 800; letter-spacing: 0.2em;
  color: #ffffff; text-shadow: 0 0 30px rgba(110,207,100,0.3);
  line-height: 1; margin: 0 0 4px;
}
.login-subtitle {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em; text-transform: uppercase; margin: 0;
}
.login-subtitle2 {
  font-size: 11px; color: rgba(168, 213, 181, 0.7);
  letter-spacing: 0.05em; margin: 2px 0 0;
}

.login-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,140,53,0.5), transparent);
  margin: 20px 0;
}

.login-form { display: flex; flex-direction: column; gap: 16px; }
.login-field { display: flex; flex-direction: column; gap: 6px; }
.login-label {
  font-size: 11px; font-weight: 700; color: rgba(168,213,181,0.9);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.login-input-wrap { position: relative; display: flex; align-items: center; }
.login-input-icon {
  position: absolute; left: 12px; font-size: 13px;
  color: rgba(255,255,255,0.35); pointer-events: none; z-index: 1; line-height: 1;
}

.login-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(74,140,53,0.3);
  border-radius: 10px;
  padding: 10px 40px 10px 36px;
  color: #ffffff; font-size: 14px; font-weight: 500;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.login-input::placeholder { color: rgba(255,255,255,0.2); }
.login-input:focus {
  border-color: rgba(74,140,53,0.7);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(74,140,53,0.15);
}

.login-error {
  background: rgba(204,34,34,0.15); border: 1px solid rgba(204,34,34,0.45);
  border-radius: 8px; padding: 9px 12px; font-size: 12px;
  color: #ff8888; font-weight: 600; display: flex; align-items: center; gap: 6px;
  animation: login-shake 0.35s ease both;
}

.login-hint {
  font-size: 11px; color: rgba(168,213,181,0.5); text-align: center; line-height: 1.5;
}
.login-hint strong { color: rgba(110,207,100,0.8); }

.login-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px; border: none; cursor: pointer;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em; color: #ffffff;
  background: linear-gradient(135deg, #3a8c2f 0%, #1a7a3c 50%, #143322 100%);
  box-shadow: 0 4px 20px rgba(58,140,47,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s; margin-top: 4px;
}
.login-btn:hover:not(:disabled) {
  opacity: 0.92; transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(58,140,47,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}

.login-card-footer {
  text-align: center; font-size: 10px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em; margin: 20px 0 0;
}

.login-footer {
  position: relative; z-index: 2;
  background: rgba(3,13,6,0.9); border-top: 1px solid rgba(74,140,53,0.2);
  padding: 7px 24px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; flex-shrink: 0;
}
.login-footer-sep { margin: 0 10px; color: rgba(74,140,53,0.4); }

/* ─────────────────────────────────────────────────────────
   DASHBOARD STYLES (Adapted to Figma Image)
   ───────────────────────────────────────────────────────── */

.dash-body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background-color: var(--bg-base); /* Very dark background */
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
}

/* Very top brand bar - Black, small text */
.dash-brand-bar {
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 0;
    text-transform: uppercase;
    z-index: 100;
}

/* Horizontal Navbar */
.dash-navbar {
    background: #0a1f11; /* Dark green background */
    border-bottom: 2px solid #336e42;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 15px;
    height: 65px;
}

.dash-tabs {
    display: flex;
    height: 100%;
}

.dash-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #9cbca4;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    min-width: 60px;
    padding: 0 12px;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    gap: 4px;
}

.dash-tab i {
    font-size: 18px;
}

.dash-tab:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.dash-tab.active {
    color: #fff;
    border-bottom: 3px solid #28a745; /* Bright green underline */
    background: rgba(255,255,255,0.02);
}

/* Right side actions in navbar */
.dash-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 15px;
}

.user-label {
    font-size: 10px;
    color: #9cbca4;
}

.user-role {
    background: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    transition: filter 0.2s;
}

.nav-btn i {
    font-size: 12px;
}

.nav-btn:hover {
    filter: brightness(1.2);
}

.btn-refresh {
    background: #28a745;
    border: 1px solid #1e7e34;
}

.btn-logout {
    background: #dc3545;
    border: 1px solid #c82333;
}

.btn-password {
    background: #555;
    border: 1px solid #444;
}

/* Main Content Area */
.dash-main-container {
    flex: 1;
    background: #0b1f13; 
    padding: 40px 60px 60px 60px; /* Highly increased outer margin from window edges */
    overflow: auto;
}

.dash-content-area {
    background: #0c2b18; 
    border: 1px solid #1a512d;
    border-radius: 8px; 
    min-height: calc(100vh - 200px);
    padding: 40px; /* Highly increased inner padding for the form components */
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ─────────────────────────────────────────────────────────
   MASTERS TAB STYLES
   ───────────────────────────────────────────────────────── */
.tab-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #286337;
    padding-bottom: 10px;
}

.tab-header i {
    color: #28a745;
    margin-right: 10px;
}

.masters-navbar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.masters-navbar a {
    background: #0a1f11;
    color: #9cbca4;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #286337;
    transition: all 0.2s;
}

.masters-navbar a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.masters-navbar a.active {
    background: #28a745;
    color: #fff;
    border-color: #1e7e34;
}

.masters-form-box {
    background: #0b2513;
    padding: 20px;
    border: 1px solid #286337;
    border-radius: 6px;
    margin-bottom: 20px;
}

.form-title {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #9cbca4;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group label .required {
    color: #dc3545;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    max-width: 400px;
    background: #020d06;
    border: 1px solid #286337;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    outline: none;
    font-size: 13px;
}

.form-control:focus {
    border-color: #28a745;
}

.btn-submit {
    background: #28a745;
    color: #fff;
    border: 1px solid #1e7e34;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-submit:hover {
    filter: brightness(1.1);
}

.table-container {
    margin-top: 30px;
    overflow-x: auto;
}

.master-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.master-table th, .master-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #286337;
}

.master-table th {
    background: #0a1f11;
    color: #9cbca4;
    font-weight: 600;
    text-transform: uppercase;
}

.master-table td {
    color: #e0e0e0;
}

.form-alert {
    background: #0a1f11;
    color: #28a745;
    border: 1px solid #28a745;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 500;
}

/* ─────────────────────────────────────────────────────────
   PRODUCT TAB STYLES
   ───────────────────────────────────────────────────────── */
.product-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #1a512d;
    padding-bottom: 15px;
}

.btn-categories {
    background: #3c8d40;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    border: none;
    transition: filter 0.2s;
}
.btn-categories:hover {
    filter: brightness(1.1);
}

.product-form-container {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #1a4a25;
}

.product-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 3px;
}

/* Override form-control for products to look white with black text */
.prod-input {
    background: #ffffff !important;
    color: #333 !important;
    border: none !important; /* The image looks borderless/clean */
    max-width: 100% !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    padding: 8px 12px !important; /* Slightly thicker */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05) !important;
}

.product-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

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

.btn-prod {
    border: none;
    padding: 6px 16px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: filter 0.2s;
}
.btn-prod:hover { filter: brightness(1.1); }
.btn-create { background: #3c8d40; }
.btn-clear { background: #555555; }
.btn-close { background: #d32f2f; }

.action-search {
    display: flex;
    align-items: center;
}
.prod-search-input {
    background: #ffffff !important;
    color: #333 !important;
    border: none !important;
    width: 250px !important; /* Made wider based on image proportions */
    padding: 5px 12px !important;
    border-radius: 4px !important;
    height: 30px;
    font-size: 13px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05) !important;
}

/* Data Table */
.product-table-wrapper {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    overflow-x: auto;
}

.product-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    color: #333;
}

.product-data-table th {
    background: #397a51;
    color: #fff;
    text-align: left;
    padding: 8px 10px;
    font-weight: 600;
}

.product-data-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* Zebra striping for light look */
.product-data-table tbody tr:nth-child(even) {
    background-color: #f7fbf8;
}
.product-data-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
.product-data-table tbody tr:hover {
    background-color: #e9f5ec;
}

/* ─────────────────────────────────────────────────────────
   SAILOR TAB STYLES — Exact Screenshot Match
   ───────────────────────────────────────────────────────── */

/* Page title above the form card */
.sailor-page-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.sailor-page-title i {
    color: #9cbca4;
    margin-right: 10px;
}

/* The bordered form card */
.sailor-form-card {
    border: 1px solid #2a5a38;
    border-radius: 6px;
    padding: 30px 35px 25px;
    background: transparent;
}

/* Main 2-section grid: fields on left, photo on right */
.sailor-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 0;
}

/* Left fields area: 2-column rows */
.sailor-fields {
    padding-right: 40px;
}

.sailor-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    margin-bottom: 18px;
}

.sailor-field {
    display: flex;
    flex-direction: column;
}

/* Labels */
.s-label {
    font-size: 11px;
    font-weight: 700;
    color: #c1d8c9;
    margin-bottom: 5px;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.req { color: #dc3545; }

/* Inputs */
.s-input {
    width: 100%;
    background: #ffffff;
    color: #333;
    border: none;
    border-radius: 3px;
    padding: 7px 10px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    outline: none;
}
.s-input:focus {
    box-shadow: 0 0 0 2px rgba(40,167,69,0.3);
}
select.s-input {
    cursor: pointer;
    appearance: auto;
}

/* P No input + Search button inline */
.s-input-group {
    display: flex;
    gap: 8px;
}
.s-input-group .s-input {
    flex: 1;
}
.s-btn-search {
    white-space: nowrap;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}
.s-btn-search:hover { filter: brightness(1.15); }

/* Bottom action bar */
.sailor-bottom-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}
.s-print-label {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 5px;
}
.s-print-label input[type="checkbox"] {
    accent-color: #28a745;
}

/* Action buttons */
.s-btn {
    border: none;
    padding: 6px 18px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: filter 0.15s;
}
.s-btn:hover { filter: brightness(1.15); }
.s-btn-create { background: #28a745; }
.s-btn-clear  { background: #555; }
.s-btn-close  { background: #dc3545; }

/* ═══ RIGHT PHOTO SECTION ═══ */
.sailor-photo-section {
    border-left: 1px solid #2a5a38;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
}

.sp-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}

.sp-photo-box {
    width: 100%;
    height: 130px;
    border: 1px solid #3b6342;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #7b9683;
    margin-bottom: 10px;
}
.sp-photo-box i {
    font-size: 2.5rem;
    margin-bottom: 6px;
}
.sp-photo-box span {
    font-size: 10px;
}

.sp-preview-box {
    width: 100%;
    height: 90px;
    border: 1px solid #3b6342;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b9683;
    font-size: 11px;
    margin-bottom: 15px;
}

.sp-cam-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sp-cam-label {
    font-size: 11px;
    color: #c1d8c9;
    font-weight: 600;
}
.sp-cam-btns {
    display: flex;
    gap: 5px;
}

