/* ==========================================================================
   #FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

.font-robo { font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif; }
.font-poppins { font-family: "Poppins", "Arial", "Helvetica Neue", sans-serif; }

/* ==========================================================================
   #GRID
   ========================================================================== */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row-space {
  justify-content: space-between;
}
.col-2 {
  width: calc((100% - 30px) / 2);
}
@media (max-width: 767px) {
  .col-2 { width: 100%; }
}

/* ==========================================================================
   #BOX-SIZING & RESET
   ========================================================================== */
html { box-sizing: border-box; }
* { padding: 0; margin: 0; }
*, *:before, *:after { box-sizing: inherit; }

body, h1, h2, h3, h4, h5, h6, blockquote, p, pre, dl, dd, ol, ul, figure, hr, fieldset, legend {
  margin: 0; padding: 0;
}
li > ol, li > ul { margin-bottom: 0; }
table { border-collapse: collapse; border-spacing: 0; }
fieldset { min-width: 0; border: 0; }
button { outline: none; background: none; border: none; }

/* ==========================================================================
   #PAGE WRAPPER
   ========================================================================== */
.page-wrapper { min-height: 100vh; }
body {
  font-family: "Poppins", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 15px; }
h6 { font-size: 13px; font-weight: 400; }

/* ==========================================================================
   #BACKGROUND
   ========================================================================== */
.bg-blue { background: #2c6ed5; }
.bg-red { background: #fa4251; }
.bg-gra-01 { background: linear-gradient(to top, #fbc2eb 0%, #a18cd1 100%); }
.bg-gra-02 { background: linear-gradient(to top right, #fc2c77 0%, #6c4079 100%); }
/* Added a soft neutral background for data entry to match your image */
.bg-light-grey { background-color: #f4f6f9; }

/* ==========================================================================
   #SPACING
   ========================================================================== */
.p-t-100 { padding-top: 100px; }
.p-t-130 { padding-top: 130px; }
.p-t-180 { padding-top: 180px; }
.p-t-20 { padding-top: 20px; }
.p-t-15 { padding-top: 15px; }
.p-t-10 { padding-top: 10px; }
.p-t-40 { padding-top: 40px; }
.p-b-100 { padding-bottom: 100px; }
.p-b-40 { padding-bottom: 40px; }
.m-r-45 { margin-right: 45px; }

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
.wrapper { margin: 0 auto; }
.wrapper--w1200 { max-width: 1200px; } /* Added wider wrapper for table */
.wrapper--w960 { max-width: 960px; }
.wrapper--w780 { max-width: 780px; }
.wrapper--w680 { max-width: 680px; }

/* ==========================================================================
   #BUTTON
   ========================================================================== */
.btn {
  display: inline-block;
  line-height: 50px;
  padding: 0 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  font-family: "Poppins", "Arial", "Helvetica Neue", sans-serif;
  text-decoration: none;
  text-align: center;
}
.btn--radius { border-radius: 3px; }
.btn--radius-2 { border-radius: 5px; }
.btn--pill { border-radius: 20px; }
.btn--green { background: #57b846; }
.btn--green:hover { background: #4dae3c; }
.btn--blue { background: #4272d7; }
.btn--blue:hover { background: #3868cd; }

/* ==========================================================================
   #FORM
   ========================================================================== */
input, select {
  outline: none;
  margin: 0;
  border: none;
  box-shadow: none;
  width: 100%;
  font-size: 14px;
  font-family: inherit;
}
.input--style-4 {
  line-height: 50px;
  height: 50px;
  background: #fafafa;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  color: #666;
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
}
.input--style-4:focus {
  border-color: #4272d7;
}

.label {
  font-size: 16px;
  color: #555;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

/* ==========================================================================
   #TITLE
   ========================================================================== */
.title {
  font-size: 24px;
  color: #525252;
  font-weight: 600;
  margin-bottom: 0;
}

/* ==========================================================================
   #CARD
   ========================================================================== */
.card { border-radius: 3px; background: #fff; }
.card-4 {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}
.card-4 .card-body {
  padding: 57px 65px;
}
@media (max-width: 767px) {
  .card-4 .card-body { padding: 40px 20px; }
}


/* ==========================================================================
   #CUSTOM TABLE CSS (From previous step)
   ========================================================================== */
.select-container {
    max-width: 450px;
    margin: 0 auto 40px auto;
}

.table-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.strict-table {
    width: 100%;
    min-width: 950px; 
    margin-bottom: 0;
    border-collapse: collapse;
}

.strict-table thead th {
    background-color: #24292e !important; 
    color: #ffffff !important;
    border: 1px solid #3c4146 !important;
    text-align: center;
    vertical-align: middle;
    padding: 15px;
    white-space: nowrap; 
    font-weight: 500;
}

.strict-table tbody td, 
.strict-table tfoot td {
    vertical-align: middle;
    padding: 12px 10px;
    border: 1px solid #dee2e6;
}

.strict-table tbody td:first-child {
    font-weight: 600;
    width: 200px;
    min-width: 180px;
    white-space: normal;
    color: #333;
}

.table-input {
    width: 100%;
    min-width: 80px; 
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    text-align: right; 
    background: #fafafa;
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.table-input:focus {
    outline: none;
    border-color: #4272d7;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(66, 114, 215, 0.3);
}