/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 14 2026 | 01:59:32 */
/* ======================================
   table-with-2-columns
   ====================================== */

/* Column widths */
.wp-block-table.table-with-2-columns table td:first-child {
  width: 25% !important;
}

.wp-block-table.table-with-2-columns table td:last-child {
  width: 75% !important;
}

/* Header row styling */
.wp-block-table.table-with-2-columns table tr:first-child {
  background-color: #0a0a0a !important; /* darker gray */
  font-weight: bold !important;         /* or 700 */
  color: #fafafa !important;            /* text color */
  font-size: 20px !important;           /* adjust as needed */
  font-style: normal !important;        /* or italic */
  text-align: center !important; /* left, center, or right */ 
  font-family: 'Berkshire Swash', normal !important; /* custom font */
}


/* Odd rows starting from row 3 (3rd, 5th, 7th...) - lighter gray */
.wp-block-table.table-with-2-columns table tr:nth-child(odd):not(:first-child) {
  background-color: #f2f2f2 !important; /* light gray */
}

/* Even rows (2nd, 4th, 6th...) - white */
.wp-block-table.table-with-2-columns table tr:nth-child(even) {
  background-color: #ffffff !important; /* white */
}
