/* =========================
   GLOBAL INPUT STYLES
========================= */

input,
select {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* text + number inputs */
input[type="text"],
input[type="number"] {
  width: 100%;
}

/* focus effect */
input[type="number"]:focus,
input[type="text"]:focus {
  font-size: 16px;
  outline: none;
}

/* select styling */
select {
  font-size: 16px;
  font-weight: bold;
}

select option {
  font-size: 14px;
  font-weight: bold;
}

select:focus {
  border-color: #198754;
  outline: none;
}

/* mandatory label */
label.mandatory::before {
  content: "* ";
  color: red;
}

/* general label */
label {
  font-size: 1.1rem;
  color: #000;
  font-family: Verdana, sans-serif;
}

/* =========================
   CHECKBOX FIX (IMPORTANT)
========================= */

.form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #0d6efd;   /* makes unchecked visible */
  accent-color: #0d6efd;
  cursor: pointer;
}

/* =========================
   TABLE DESIGN (CLEAN)
========================= */
.my-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* header */
.my-table thead th {
    background-color: #0d6efd;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border: none;
    position: sticky;
    top: 0;
    z-index: 2;
}

/* inputs */
.my-table input,
.my-table select {
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}

/* table cells */
.my-table td {
  padding: 3px 6px;
  line-height: 1.1;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;   /* IMPORTANT FIX */
}

/* checkbox */
.my-table td input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 auto;
    display: block;
}

/* zebra rows */
.my-table tbody tr:nth-child(odd) td {
    background-color: #ffffff;
}

.my-table tbody tr:nth-child(even) td {
    background-color: #f8f9fa;
}

/* hover */
.my-table tbody tr {
    transition: background-color 0.2s ease-in-out;
}


.my-table tbody tr td {
    background-color: #e7f1ff;
}

.my-table tbody tr:hover td {
    background-color: #cfe2ff !important;
    cursor: pointer;
}
/* =======================
     table animation
==========================*/
/* GLOBAL FADE-UP */
.fade-up-global {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* visible state */
.fade-up-global.show {
    opacity: 1;
    transform: translateY(0);
}
table {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

table.show {
    opacity: 1;
    transform: translateY(0);
}

table.no-anim {
    opacity: 1 !important;
    transform: none !important;
}

/* FADE-UP FOR ALL HEADER BLOCKS */
.soft-shadow {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* visible state */
.soft-shadow.show {
    opacity: 1;
    transform: translateY(0);
}
/* =========================
   HEADER TITLE STYLE
========================= */



.soft-shadow p,
.soft-shadow a {
    font-weight: 300; /* normal weight */
    font-size: 25px;  
    line-height: 2.5; 
}

.soft-shadow {
    background: #fff;
    border: 0px solid #e9e9e9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    color : black;
}

.soft-shadow {
    background: #f8f9fa;
   padding-right: 30px;
    border-radius: 6px;
}

.soft-shadow .col-12.col-sm-6.text-sm-right a {
    padding-right: 50px;
}

.soft-shadow .col-12.col-sm-6 p.text-red {
    padding-left: 50px;
}
/* =========================
   IMAGE CARD STYLE
========================= */

img.photo-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

img.photo-card:hover {
  transform: translateY(-10px);
}

img.photo-card img {
  width: 100%;
  height: 200px;
  display: block;
}

img.photo-caption {
  padding: 15px;
  text-align: center;
  color: #555;
  font-size: 16px;
}