/* MAIN CONTAINER */
.ncb-form-container {
  max-width: 420px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

/* TITLE */
.ncb-form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

/* INPUTS */
.ncb-form-container input,
.ncb-form-container select {
  width: 100% !important;
  height: 52px;
  padding: 0 16px !important;
  margin-bottom: 18px;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  background: #f9fafb !important;
  font-size: 16px !important;
  box-sizing: border-box;
}

/* INPUT FOCUS */
.ncb-form-container input:focus,
.ncb-form-container select:focus {
  border-color: #111827 !important;
  outline: none !important;
  background: #fff !important;
}

/* BUTTON */
.ncb-form-container button {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.ncb-form-container button:hover {
  background: #000;
}

/* LABEL */
.ncb-label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#111827;
}

/* MESSAGE */
#ncb-message{
    margin-bottom:15px;
    font-size:14px;
}

/* MOBILE */
@media (max-width: 480px) {
  .ncb-form-container {
    margin: 30px 15px;
    padding: 25px;
  }

  .ncb-form-container h2 {
    font-size: 28px;
  }
}

/* ======================================
ADMIN PANEL UI
====================================== */

/* WRAPPER */
.ncb-admin-wrap{
    margin-top:20px;
}

/* TITLE */
.ncb-admin-title{

    font-size:30px !important;

    font-weight:700 !important;

    margin-bottom:20px !important;

    color:#111827;
}

/* STATS CARD */
.ncb-stats-card{

    background:#ffffff;

    border-radius:14px;

    padding:25px;

    margin-bottom:25px;

    max-width:320px;

    box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

/* LABEL */
.ncb-stats-label{

    font-size:15px;

    color:#6b7280;

    margin-bottom:10px;
}

/* NUMBER */
.ncb-stats-number{

    font-size:42px;

    font-weight:700;

    color:#111827;
}

/* TABLE */
.ncb-admin-wrap table.widefat{

    border:none;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 3px 12px rgba(0,0,0,0.05);
}

/* TABLE HEADER */
.ncb-admin-wrap table thead{

    background:#111827;
}

/* HEADER TEXT */
.ncb-admin-wrap table thead th{

    color:#ffffff !important;

    font-weight:600 !important;

    padding:14px 10px !important;
}

/* TABLE BODY */
.ncb-admin-wrap table tbody td{

    padding:14px 10px !important;

    vertical-align:middle;
}

/* ROW HOVER */
.ncb-admin-wrap table tbody tr:hover{

    background:#f9fafb;
}

/* ACTION LINKS */
.ncb-admin-wrap table a{

    text-decoration:none;

    font-weight:600;
}

/* EXPORT BUTTON */
.ncb-admin-wrap .button-primary{

    background:#111827 !important;

    border:none !important;

    border-radius:8px !important;

    padding:6px 16px !important;
}
