.elementor-3655 .elementor-element.elementor-element-c81bab6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:wrap;--padding-top:30px;--padding-bottom:20px;--padding-left:10px;--padding-right:10px;}.elementor-3655 .elementor-element.elementor-element-5071d3e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3655 .elementor-element.elementor-element-5071d3e.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-3655 .elementor-element.elementor-element-c12f54d img{width:100%;max-width:100%;height:184px;opacity:1;border-radius:8px 8px 8px 8px;}.elementor-3655 .elementor-element.elementor-element-106022a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-3655 .elementor-element.elementor-element-6bd2a83 .elementor-heading-title{font-family:"webinew-font", Sans-serif;font-size:clamp(1.3938rem, 1.1847rem + 1vi, 1.7422rem);font-weight:600;color:var( --e-global-color-1473aab );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-3655 .elementor-element.elementor-element-cfcc68e{--display:flex;--min-height:10px;--justify-content:flex-end;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--row-gap:0px;--column-gap:0px;--border-radius:0px 0px 0px 0px;}.elementor-widget-image-gallery .gallery-item .gallery-caption{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-3655 .elementor-element.elementor-element-c3c11c6{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:14px 14px 14px 14px;}.elementor-3655 .elementor-element.elementor-element-c3c11c6 .gallery-item .gallery-caption{text-align:center;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-3655 .elementor-element.elementor-element-bafa9a8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-theme-post-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-3655 .elementor-element.elementor-element-8c45987{text-align:justify;}@media(max-width:767px){.elementor-3655 .elementor-element.elementor-element-106022a.e-con{--order:-99999 /* order start hack */;}}@media(min-width:768px){.elementor-3655 .elementor-element.elementor-element-5071d3e{--width:25%;}.elementor-3655 .elementor-element.elementor-element-106022a{--width:40%;}.elementor-3655 .elementor-element.elementor-element-cfcc68e{--width:30%;}.elementor-3655 .elementor-element.elementor-element-bafa9a8{--width:100%;}}/* Start custom CSS for container, class: .elementor-element-bafa9a8 *//*
 * Corrected CSS for Barcoupl WordPress Tables
 * Targets tables inside .wp-block-table figure
 * Treats the first row of tbody as the header
*/

/* General styling for the table block */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse; /* Merges borders */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden; /* Essential for border-radius to work */
}

/* Styling for ALL cells (td) */
.wp-block-table td {
  padding: 12px 15px;
  text-align: right;
  border-bottom: 1px solid #eaeaea;
}

/* --- DATA ROW STYLING --- */

/* Zebra-striping for data rows (every even row after the header) */
.wp-block-table tbody tr:nth-child(even) {
  background-color: #f7f9fc;
}

/* Hover effect for data rows (any row EXCEPT the first one) */
.wp-block-table tbody tr:not(:first-child):hover {
  background-color: #e6f0fa; /* Light blue hover */
  cursor: pointer;
}


/* --- HEADER ROW STYLING --- */

/* This targets the FIRST ROW of the table and styles it as the header */
.wp-block-table tbody tr:first-child {
  background-color: #0066AB; /* Primary Blue */
  color: #FFFFFF;
  font-weight: bold;
}

/* We remove the bottom border from header cells */
.wp-block-table tbody tr:first-child td {
  border-bottom: none;
}

/* Disable hover effect on the header row */
.wp-block-table tbody tr:first-child:hover {
  background-color: #0066AB; /* Stays the same color */
  cursor: default;
}


/* --- FINAL ACCENT --- */

/* Adds the orange accent to the very last row of the table */
.wp-block-table tbody tr:last-child {
  border-bottom: 4px solid #FF9900; /* Secondary Orange */
}
/* استایل جدوال داخل بلاگ */
.elementor-element table {
    width: 100%; /* تنظیم عرض جدول به 100% */
    table-layout: auto; /* اجازه می‌دهد که عرض ستون‌ها خودکار بر اساس محتوا تنظیم شود */
    border-collapse: collapse; /* حذف فاصله بین سلول‌ها */
}

.elementor-element th, .elementor-element td {
    text-align: center; /* وسط‌چین کردن محتوا */
    padding: 8px; /* فاصله داخل سلول‌ها */
    border: 1px solid #ccc; /* خط مرزی برای سلول‌ها */
}

.elementor-element th {
    background-color: #f2f2f2; /* رنگ پس‌زمینه سرستون‌ها */
}

/* اضافه کردن استایل برای سلول‌های جدول */
.elementor-element td {
    vertical-align: middle; /* وسط‌چین عمودی محتوای داخل سلول */
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'webinew-font';
	font-display: swap;
	src: url('https://barcoupl.com/wp-content/uploads/2025/05/webinew-iYx-vf.ttf') format('truetype');
}
/* End Custom Fonts CSS */