/* Tables Template Styles */
.tables-container {
    background: #ffffff;
    max-width: 100%;
    margin: 0 auto;
}

.tables-wrapper {
    width: 100%;
}

.tables-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Comparison Table Styles */
.comparison-table-section {
    margin-bottom: 0px;
    overflow-x: auto;
	border-top: 1px solid #002F5F;
}

.comparison-table {
    width: 100%;
	margin-bottom: 0 !important;
}

.comparison-table tr {
	border: 1px solid #002F5F;
}

.comparison-table tr td {
	background: #FFF7ED !important;
}

.comparison-table-header {
    background: #F2B052;
    border: 1px solid #002F5F;
}

.comparison-header-row {
    background: #F2B052;
    border: 1px solid #002F5F;
}

.comparison-feature-column,
.comparison-normal-column,
.comparison-dry-socket-column {
  padding: 20px 60px 20px 60px;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  border: none;
}

.comparison-feature-column {
    background: #F2B052;
    width: 25%;
}

.comparison-normal-column {
    background: #F2B052;
    width: 37.5%;
}

.comparison-dry-socket-column {
    background: #F2B052;
    width: 37.5%;
}

.comparison-data-row:last-child {
    border-bottom: none;
}

.comparison-normal-cell {
	 padding: 20px 60px 20px 60px !important;
}

.comparison-feature-cell,
.comparison-normal-cell,
.comparison-dry-socket-cell {
    padding: 20px 60px 20px 60px;
    font-size: 20px;
    line-height: 27px;
    color: #000;
    vertical-align: top;
    border: none;
    width: 33.33%;
}

.comparison-table-body {
  background: #FFF7ED;
  border: 1px solid #002F5F;
  border-top: none;
}

.comparison-dry-socket-cell:last-child,
.comparison-normal-cell:last-child {
    border-right: none;
}

/* Comparison Icons */
.comparison-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

.comparison-icon-exclamation {
    background-color: #dc3545;
}

.comparison-icon-danger {
    background-color: #dc3545;
}

/* Info Section */
.tables-info-section {
    margin-top: 40px;
}

.tables-info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 24px;
}

.tables-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.tables-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tables-info-item {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 24px;
}

.tables-info-item:before {
    content: "•";
    color: #F2B052;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
	
	.comparison-feature-row.single-column {
		border: none !important;
		text-align: center !important;
	}
	
	.comparison-feature-row.single-column td {
		padding-bottom: 0 !important;
		font-weight: 600 !important;
	}
	
	.comparison-table tr {
		border: none;
		border-bottom: 1px solid #002F5F;
	}
    
    .tables-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .comparison-feature-column,
    .comparison-normal-column,
    .comparison-dry-socket-column {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .comparison-feature-cell,
    .comparison-normal-cell,
    .comparison-dry-socket-cell {
        padding: 16px 12px;
        font-size: 13px;
    }
    
    .comparison-table-section {
        margin-bottom: 30px;
    }
    
    .tables-info-card {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .tables-main-title {
        font-size: 16px;
    }
    
    .comparison-feature-column,
    .comparison-normal-column,
    .comparison-dry-socket-column {
        padding: 20px;
        font-size: 16px;
    }
    
    .comparison-feature-cell,
    .comparison-normal-cell,
    .comparison-dry-socket-cell {
        padding: 15px 20px !important;
        font-size: 16px;
    }
}

/* Mobile Table Styles */
.mobile-tables-container {
    display: none;
    background: #ffffff;
    max-width: 100%;
    margin: 0 auto;
}

.mobile-tables-wrapper {
    width: 100%;
}

.mobile-tables-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Mobile Comparison Cards */
.mobile-comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-comparison-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.mobile-comparison-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-card-feature-header {
    background: #e8f4fd;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-card-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.mobile-card-comparisons {
    padding: 0;
}

.mobile-card-normal-section,
.mobile-card-dry-socket-section {
    padding: 20px;
    border-bottom: 1px solid #f1f3f4;
}

.mobile-card-dry-socket-section:last-child {
    border-bottom: none;
}

.mobile-card-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.mobile-card-section-content {
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    margin: 0;
}

/* Mobile Info Section */
.mobile-tables-info-section {
    margin-top: 30px;
}

.mobile-tables-info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.mobile-tables-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.mobile-tables-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-tables-info-item {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.mobile-tables-info-item:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .tables-container {
        display: none;
    }
    
    .mobile-tables-container {
        display: block;
    }
}

@media screen and (min-width: 769px) {
    .mobile-tables-container {
        display: none;
    }
    
    .tables-container {
        display: block;
    }
}
