.dominopost-copy-code-wrapper {
background: #fafafa;
border: 1px solid #e1e4e8;
border-radius: 8px;
margin: 1.5em 0;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.dominopost-copy-header {
display: flex;
justify-content: space-between;
align-items: center;
background: #f6f8fa;
padding: 8px 16px;
border-bottom: 1px solid #e1e4e8;
}
.dominopost-code-title {
color: #0366d6;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
font-size: 13px;
font-weight: 600;
text-transform: lowercase;
letter-spacing: 0.5px;
}
.dominopost-copy-code-wrapper pre {
padding: 20px;
margin: 0;
background-color: #fafafa;
color: #24292e;
border: none;
border-radius: 0;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
font-size: 16px !important;
line-height: 1.8 !important;
white-space: pre-wrap;
word-wrap: break-word;
overflow-x: auto;
}
.dominopost-copy-code-wrapper pre code {
background-color: transparent;
font-family: inherit;
color: inherit;
padding: 0;
border: none;
font-size: inherit !important;
}
.dominopost-copy-code-wrapper .copy-button {
background: #ffffff;
color: #24292e;
border: 1px solid #d1d5da;
padding: 6px 14px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-weight: 500;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 6px;
}
.dominopost-copy-code-wrapper .copy-button::before {
content: "📋";
font-size: 14px;
}
.dominopost-copy-code-wrapper .copy-button:hover {
background: #f3f4f6;
border-color: #0366d6;
color: #0366d6;
}
.dominopost-copy-code-wrapper .copy-button.copied {
background: #28a745;
border-color: #28a745;
color: #fff;
}
.dominopost-copy-code-wrapper .copy-button.copied::before {
content: "✓";
}  .dominopost-toc {
background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
border-radius: 12px;
padding: 24px 28px;
margin: 30px 0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
border: 1px solid rgba(0, 115, 170, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
} .dominopost-toc::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 4px;
height: 100%;
background: linear-gradient(180deg, #0073aa 0%, #005177 100%);
border-radius: 12px 0 0 12px;
}
.dominopost-toc:hover {
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
transform: translateY(-2px);
} .dominopost-toc-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 18px;
}
.dominopost-toc h3 {
margin: 0;
font-size: 1.35em;
font-weight: 700;
color: #1a1a1a;
display: flex;
align-items: center;
gap: 10px;
letter-spacing: -0.02em;
} .dominopost-toc h3::before {
content: "";
display: inline-block;
width: 24px;
height: 24px;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230073aa'%3E%3Cpath d='M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z'/%3E%3C/svg%3E") no-repeat center;
background-size: contain;
} .dominopost-toc-toggle {
background: rgba(0, 115, 170, 0.08);
border: none;
color: #0073aa;
padding: 6px 14px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 6px;
}
.dominopost-toc-toggle:hover {
background: rgba(0, 115, 170, 0.15);
color: #005177;
}
.dominopost-toc-toggle::before {
content: "\25BE";
font-size: 10px;
transition: transform 0.3s ease;
display: inline-block;
}
.dominopost-toc.toc-collapsed .dominopost-toc-toggle::before {
transform: rotate(-90deg);
} .dominopost-toc-content {
max-height: 1000px;
overflow: hidden;
transition: max-height 0.3s ease, opacity 0.3s ease;
opacity: 1;
}
.dominopost-toc.toc-collapsed .dominopost-toc-content {
max-height: 0;
opacity: 0;
} .dominopost-toc ul {
margin: 0;
padding: 0;
list-style: none;
}
.dominopost-toc li {
display: flex;
align-items: flex-start;
margin: 0;
padding: 10px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.04);
transition: all 0.2s ease;
}
.dominopost-toc li::before {
line-height: 1.6;
}
.dominopost-toc li:last-child {
border-bottom: none;
}
.dominopost-toc li:hover {
padding-left: 8px;
background: rgba(0, 115, 170, 0.03);
border-radius: 6px;
}
.dominopost-toc a {
flex: 1;
color: #2c3338;
text-decoration: none;
font-weight: 500;
font-size: 15px;
line-height: 1.6;
transition: all 0.2s ease;
}
.dominopost-toc a:hover {
color: #0073aa;
padding-left: 4px;
}  .dominopost-toc.toc-style-bullets li {
padding-left: 24px;
position: relative;
}
.dominopost-toc.toc-style-bullets li::before {
content: "\25B8";
position: absolute;
left: 0;
color: #0073aa;
font-weight: bold;
font-size: 1.2em;
line-height: 1.4;
}
.dominopost-toc.toc-style-bullets li:hover::before {
transform: translateX(3px);
transition: transform 0.2s ease;
} .dominopost-toc.toc-style-numbers {
counter-reset: toc-counter;
}
.dominopost-toc.toc-style-numbers li {
padding-left: 40px;
position: relative;
counter-increment: toc-counter;
}
.dominopost-toc.toc-style-numbers li::before {
content: counter(toc-counter);
position: absolute;
left: 0;
top: 8px;
background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
color: white;
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 13px;
box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3);
}
.dominopost-toc.toc-style-numbers li:hover::before {
transform: scale(1.1);
box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
transition: all 0.2s ease;
} .dominopost-toc.toc-style-minimal {
background: #ffffff;
border: 1px solid #e5e7eb;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
padding: 20px 24px;
}
.dominopost-toc.toc-style-minimal::before {
display: none;
}
.dominopost-toc.toc-style-minimal h3::before {
display: none;
}
.dominopost-toc.toc-style-minimal li {
border-bottom: none;
padding: 8px 0;
}
.dominopost-toc.toc-style-minimal a {
font-weight: 400;
font-size: 14px;
color: #4b5563;
}
.dominopost-toc.toc-style-minimal a:hover {
color: #0073aa;
} .dominopost-toc.toc-style-boxed {
background: #ffffff;
border: 2px solid #0073aa;
box-shadow: 0 8px 24px rgba(0, 115, 170, 0.15);
}
.dominopost-toc.toc-style-boxed::before {
width: 100%;
height: 4px;
background: linear-gradient(90deg, #0073aa 0%, #005177 100%);
border-radius: 0;
}
.dominopost-toc.toc-style-boxed .dominopost-toc-header {
background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
margin: -24px -28px 20px;
padding: 16px 28px;
border-radius: 10px 10px 0 0;
}
.dominopost-toc.toc-style-boxed h3 {
color: white;
}
.dominopost-toc.toc-style-boxed h3::before {
filter: brightness(0) invert(1);
}
.dominopost-toc.toc-style-boxed .dominopost-toc-toggle {
background: rgba(255, 255, 255, 0.2);
color: white;
}
.dominopost-toc.toc-style-boxed .dominopost-toc-toggle:hover {
background: rgba(255, 255, 255, 0.3);
}
.dominopost-toc.toc-style-boxed li {
padding: 12px 16px;
border: 1px solid #e5e7eb;
border-radius: 8px;
margin-bottom: 8px;
background: #f9fafb;
}
.dominopost-toc.toc-style-boxed li:hover {
background: #f0f9ff;
border-color: #0073aa;
box-shadow: 0 2px 8px rgba(0, 115, 170, 0.1);
} .dominopost-toc ul ul {
margin-top: 8px;
padding-left: 24px;
}
.dominopost-toc ul ul li {
font-size: 0.95em;
opacity: 0.9;
} .dominopost-toc li.toc-level-3 {
margin-left: 20px;
}
.dominopost-toc li.toc-level-4 {
margin-left: 40px;
}
.dominopost-toc li.toc-level-5 {
margin-left: 60px;
}
.dominopost-toc li.toc-level-6 {
margin-left: 80px;
}  .dominopost-toc.toc-style-modern-light {
background: #ffffff;
border: 1px solid #e2e8f0;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.dominopost-toc.toc-style-modern-light::before {
background: linear-gradient(180deg, #8b5cf6 0%, #3b82f6 100%);
}
.dominopost-toc.toc-style-modern-light h3::before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238b5cf6'%3E%3Cpath d='M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z'/%3E%3C/svg%3E") no-repeat center;
}
.dominopost-toc.toc-style-modern-light li::before {
content: "•";
color: #8b5cf6;
margin-right: 8px;
font-weight: bold;
}
.dominopost-toc.toc-style-modern-light a:hover {
color: #8b5cf6;
} .dominopost-toc.toc-style-sleek-dark {
background: #111827;
border: 1px solid #374151;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}
.dominopost-toc.toc-style-sleek-dark::before {
background: linear-gradient(180deg, #a78bfa 0%, #6366f1 100%);
}
.dominopost-toc.toc-style-sleek-dark h3 {
color: #f9fafb;
}
.dominopost-toc.toc-style-sleek-dark h3::before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a78bfa'%3E%3Cpath d='M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z'/%3E%3C/svg%3E") no-repeat center;
}
.dominopost-toc.toc-style-sleek-dark .dominopost-toc-toggle {
background: rgba(167, 139, 250, 0.1);
color: #a78bfa;
}
.dominopost-toc.toc-style-sleek-dark .dominopost-toc-toggle:hover {
background: rgba(167, 139, 250, 0.2);
}
.dominopost-toc.toc-style-sleek-dark li {
border-bottom: 1px solid #1f2937;
}
.dominopost-toc.toc-style-sleek-dark li::before {
content: "⚡";
margin-right: 8px;
font-size: 10px;
filter: drop-shadow(0 0 4px #a78bfa);
}
.dominopost-toc.toc-style-sleek-dark a {
color: #d1d5db;
}
.dominopost-toc.toc-style-sleek-dark a:hover {
color: #a78bfa;
} .dominopost-toc.toc-style-minimalist {
background: #f9fafb;
border: 1px solid #e5e7eb;
box-shadow: none;
border-radius: 8px;
}
.dominopost-toc.toc-style-minimalist::before {
display: none;
}
.dominopost-toc.toc-style-minimalist h3::before {
display: none;
}
.dominopost-toc.toc-style-minimalist ul {
border-left: 2px solid #d1d5db;
padding-left: 16px;
margin-left: 4px;
}
.dominopost-toc.toc-style-minimalist li {
border-bottom: none;
padding: 6px 0;
}
.dominopost-toc.toc-style-minimalist a {
color: #4b5563;
font-weight: 500;
}
.dominopost-toc.toc-style-minimalist a:hover {
color: #111827;
} .dominopost-toc.toc-style-cyber-gradient {
background: linear-gradient(135deg, #030712 0%, #0b1528 100%);
border: 1px solid #06b6d4;
box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
border-radius: 16px;
}
.dominopost-toc.toc-style-cyber-gradient::before {
background: linear-gradient(180deg, #06b6d4 0%, #3b82f6 100%);
}
.dominopost-toc.toc-style-cyber-gradient h3 {
color: #22d3ee;
font-family: monospace;
letter-spacing: 0.1em;
}
.dominopost-toc.toc-style-cyber-gradient h3::before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2306b6d4'%3E%3Cpath d='M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z'/%3E%3C/svg%3E") no-repeat center;
}
.dominopost-toc.toc-style-cyber-gradient .dominopost-toc-toggle {
background: rgba(6, 182, 212, 0.1);
color: #06b6d4;
border: 1px solid rgba(6, 182, 212, 0.3);
font-family: monospace;
}
.dominopost-toc.toc-style-cyber-gradient .dominopost-toc-toggle:hover {
background: rgba(6, 182, 212, 0.2);
}
.dominopost-toc.toc-style-cyber-gradient li {
border-bottom: 1px solid #1f2937;
}
.dominopost-toc.toc-style-cyber-gradient li::before {
content: "//";
color: #06b6d4;
margin-right: 8px;
font-family: monospace;
}
.dominopost-toc.toc-style-cyber-gradient a {
color: #e5e7eb;
font-family: monospace;
}
.dominopost-toc.toc-style-cyber-gradient a:hover {
color: #06b6d4;
text-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
} .dominopost-toc.toc-style-classic-warm {
background: #fdfcf7;
border: 1px solid #e6dfcc;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
font-family: Georgia, serif;
counter-reset: classic-h2 classic-h3 classic-h4 classic-h5 classic-h6;
}
.dominopost-toc.toc-style-classic-warm::before {
background: #5c533c;
}
.dominopost-toc.toc-style-classic-warm h3 {
color: #5c533c;
font-style: italic;
justify-content: center;
}
.dominopost-toc.toc-style-classic-warm h3::before {
content: "§ ";
display: inline;
width: auto;
height: auto;
background: none;
}
.dominopost-toc.toc-style-classic-warm h3::after {
content: " §";
display: inline;
}
.dominopost-toc.toc-style-classic-warm .dominopost-toc-toggle {
background: #e6dfcc;
color: #5c533c;
}
.dominopost-toc.toc-style-classic-warm li {
border-bottom: 1px dashed #e6dfcc;
} .dominopost-toc.toc-style-classic-warm li.toc-level-2 {
counter-increment: classic-h2;
counter-reset: classic-h3;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-2::before {
content: counter(classic-h2, upper-roman) ".";
color: #5c533c;
font-weight: bold;
margin-right: 8px;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-2 a {
color: #5c533c;
font-weight: bold;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-3 {
counter-increment: classic-h3;
counter-reset: classic-h4;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-3::before {
content: counter(classic-h3, upper-latin) ".";
color: #7c7050;
margin-right: 8px;
font-style: italic;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-3 a {
color: #7c7050;
font-style: italic;
font-size: 0.9em;
} .dominopost-toc.toc-style-classic-warm li.toc-level-4 {
counter-increment: classic-h4;
counter-reset: classic-h5;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-4::before {
content: counter(classic-h4, decimal) ".";
color: #7c7050;
margin-right: 8px;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-5 {
counter-increment: classic-h5;
counter-reset: classic-h6;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-5::before {
content: counter(classic-h5, lower-latin) ".";
color: #7c7050;
margin-right: 8px;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-6 {
counter-increment: classic-h6;
}
.dominopost-toc.toc-style-classic-warm li.toc-level-6::before {
content: counter(classic-h6, lower-roman) ".";
color: #7c7050;
margin-right: 8px;
}
.dominopost-toc.toc-style-classic-warm a:hover {
color: #8c7b50;
} @media (max-width: 768px) {
.dominopost-toc {
padding: 20px;
margin: 20px 0;
}
.dominopost-toc h3 {
font-size: 1.2em;
}
.dominopost-toc a {
font-size: 14px;
}
}
.dominopost-toc h3 {
font-size: 1.2em;
}
.dominopost-toc a {
font-size: 14px;
} .dominopost-download-wrapper {
margin: 15px 0;
clear: both;
}
.dominopost-download-wrapper.dominopost-align-left {
text-align: left;
}
.dominopost-download-wrapper.dominopost-align-center {
text-align: center;
}
.dominopost-download-wrapper.dominopost-align-right {
text-align: right;
} .dominopost-download-btn {
display: inline-block;
padding: 12px 30px;
margin: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff !important;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 16px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.dominopost-download-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
} .dominopost-download-pulse {
animation: dominopost-pulse 2s infinite;
}
@keyframes dominopost-pulse {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
} .dominopost-download-bounce {
animation: dominopost-bounce 1s infinite;
}
@keyframes dominopost-bounce {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
} .dominopost-download-glow {
animation: dominopost-glow 1.5s infinite alternate;
}
@keyframes dominopost-glow {
from {
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
to {
box-shadow: 0 4px 25px rgba(102, 126, 234, 0.8), 0 0 30px rgba(102, 126, 234, 0.6);
}
} .dominopost-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0;
font-size: 15px;
border: 1px solid #e2e8f0;
border-radius: 8px;
overflow: hidden;
}
.dominopost-table th,
.dominopost-table td {
border: 1px solid #e2e8f0;
padding: 14px 18px;
text-align: left;
}
.dominopost-table th {
background-color: #f8fafc;
font-weight: 700;
color: #1e293b;
} .dominopost-table-modern {
border: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.dominopost-table-modern th {
background: #4f46e5;
color: white;
border-color: #4338ca;
}
.dominopost-table-modern tr:nth-child(even) { background-color: #f8fafc; } .dominopost-table-minimal {
border: 1px solid #e2e8f0;
border-radius: 4px;
}
.dominopost-table-minimal th {
background: #fff;
border-bottom: 2px solid #e2e8f0;
color: #64748b;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.05em;
} .dominopost-table-comparison {
border: none;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.dominopost-table-comparison th {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: white;
padding: 20px;
font-size: 16px;
border: none;
}
.dominopost-table-comparison td { padding: 16px 20px; border-bottom: 1px solid #f1f5f9; }
.dominopost-table-comparison tr:last-child td { border-bottom: none; } .dominopost-table-zebra tr:nth-child(odd) { background-color: #ffffff; }
.dominopost-table-zebra tr:nth-child(even) { background-color: #f1f5f9; }
.dominopost-table-zebra th { background: #1e293b; color: white; } .dp-faq-block {
margin: 40px 0;
border: none;
border-radius: 16px;
overflow: hidden;
background: #fff;
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.dp-faq-item {
border-bottom: 1px solid #f1f5f9;
}
.dp-faq-item:last-child {
border-bottom: none;
}
.dp-faq-question {
margin: 0 !important;
padding: 20px 24px;
font-weight: 700;
font-size: 18px;
background: linear-gradient(to right, #f8fafc, #ffffff);
color: #1a202c;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.2s ease;
border: none !important;
}
.dp-faq-question:hover {
background: #f1f5f9;
color: #2271b1;
}
.dp-faq-question .dashicons {
color: #64748b;
transition: transform 0.3s ease;
}
.dp-faq-question:hover .dashicons {
color: #2271b1;
}
.dp-faq-answer {
display: none; padding: 20px 24px;
font-size: 16px;
line-height: 1.6;
color: #4a5568;
background: #fff;
border-top: 1px solid #f1f5f9;
}
.dp-faq-answer p {
margin: 0 !important;
padding: 0 !important;
} .dp-faq-block.dp-faq-style-modern {
border-radius: 16px;
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}
.dp-faq-block.dp-faq-style-modern .dp-faq-question {
background: linear-gradient(to right, #f8fafc, #ffffff);
} .dp-faq-block.dp-faq-style-minimal {
border: 1px solid #e2e8f0;
border-radius: 8px;
box-shadow: none;
}
.dp-faq-block.dp-faq-style-minimal .dp-faq-question {
background: #fff;
padding: 15px 20px;
border-bottom: 1px solid #f1f5f9;
}
.dp-faq-block.dp-faq-style-minimal .dp-faq-item:last-child .dp-faq-question {
border-bottom: none;
} .dp-faq-block.dp-faq-style-shadow {
border: none;
background: transparent;
box-shadow: none;
border-radius: 0;
}
.dp-faq-block.dp-faq-style-shadow .dp-faq-item {
background: #fff;
margin-bottom: 15px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
border: none;
}
.dp-faq-block.dp-faq-style-shadow .dp-faq-question {
border-radius: 12px 12px 0 0;
} .dp-faq-block.dp-faq-style-compact {
border-radius: 4px;
border: 1px solid #eee;
}
.dp-faq-block.dp-faq-style-compact .dp-faq-question {
padding: 10px 15px;
font-size: 15px;
background: #fafafa;
}
.dp-faq-block.dp-faq-style-compact .dp-faq-answer {
padding: 15px;
font-size: 14px;
}
@media (max-width: 768px) {
.dominopost-table {
display: block;
overflow-x: auto;
}
} .dominopost-related-posts {
margin: 40px 0;
padding: 25px 30px;
background: #f8f9fa;
border-left: 4px solid #4285f4;
border-radius: 8px;
}
.dominopost-related-title {
font-size: 18px;
font-weight: 700;
margin: 0 0 15px 0;
color: #333;
}
.dominopost-related-list {
margin: 0;
padding-left: 25px;
list-style-position: outside;
}
.dominopost-related-list li {
margin-bottom: 10px;
line-height: 1.6;
}
.dominopost-related-list li a {
color: #333;
text-decoration: none;
font-size: 16px;
transition: color 0.2s;
}
.dominopost-related-list li a:hover {
color: #4285f4;
text-decoration: underline;
} .dominopost-last-updated {
background: #e7f5ff;
border-left: 4px solid #0073aa;
padding: 12px 16px;
margin: 0 0 24px 0;
border-radius: 4px;
font-size: 14px;
color: #333;
display: flex;
align-items: center;
gap: 8px;
}
.dominopost-updated-icon {
font-size: 18px;
} .dominopost-toc-show-more-container {
text-align: center;
margin-top: 15px;
padding-top: 10px;
border-top: 1px dashed #e1e4e8;
}
.dominopost-toc-show-more {
background: none;
border: none;
color: #2271b1;
cursor: pointer;
font-size: 14px;
font-weight: 500;
padding: 5px 10px;
display: inline-flex;
align-items: center;
gap: 5px;
transition: color 0.2s;
}
.dominopost-toc-show-more:hover {
color: #135e96;
text-decoration: underline;
}
.dominopost-toc-show-more:focus {
outline: 2px solid #2271b1;
border-radius: 4px;
} .dominopost-toc-hidden-item {
display: none;
} .dominopost-auto-link {
color: #4f46e5;
text-decoration: none;
border-bottom: 2px dotted #4f46e5;
transition: all 0.2s ease;
font-weight: 500;
}
.dominopost-auto-link:hover {
color: #4338ca;
border-bottom-style: solid;
background-color: rgba(79, 70, 229, 0.05);
}@media only screen and (max-width: 799px){.ub-hide-on-mobile{display:none}}@media only screen and (min-width: 800px)and (max-width: 1023px){.ub-hide-on-tablet{display:none}}@media only screen and (min-width: 1024px){.ub-hide-on-desktop{display:none}}#ez-toc-container{background:#F9F9F9;border:1px solid #AAA;border-radius:4px;-webkit-box-shadow:0 1px 1px rgb(0 0 0 / .05);box-shadow:0 1px 1px rgb(0 0 0 / .05);display:table;margin-bottom:1em;padding-top:10px;padding-right:20px;padding-bottom:10px;padding-left:10px;position:relative;width:auto}div.ez-toc-widget-container{padding:0;position:relative}#ez-toc-container.ez-toc-light-blue{background:#EDF6FF}#ez-toc-container.ez-toc-white{background:#FFF}#ez-toc-container.ez-toc-black{background:#000}#ez-toc-container.ez-toc-transparent{background:none #fff0}div.ez-toc-widget-container ul{display:block}div.ez-toc-widget-container li{border:none;padding:0}div.ez-toc-widget-container ul.ez-toc-list{padding:10px}#ez-toc-container ul ul,.ez-toc div.ez-toc-widget-container ul ul{margin-left:1.5em}#ez-toc-container ul,#ez-toc-container li{margin:0;padding:0}#ez-toc-container ul,#ez-toc-container li,#ez-toc-container ul li,div.ez-toc-widget-container,div.ez-toc-widget-container li{background:none;list-style:none none;line-height:1.6;margin:0;overflow:hidden;z-index:1}#ez-toc-container .ez-toc-title{text-align:left;line-height:1.45;margin:0;padding:0}.ez-toc-title-container{display:table;width:100%}.ez-toc-title,.ez-toc-title-toggle{display:inline;text-align:left;vertical-align:middle}#ez-toc-container.ez-toc-black p.ez-toc-title{color:#FFF}#ez-toc-container div.ez-toc-title-container+ul.ez-toc-list{margin-top:1em}.ez-toc-wrap-left{margin:0 auto 1em 0px!important}.ez-toc-wrap-left-text{float:left}.ez-toc-wrap-right{margin:0 0 1em auto!important}.ez-toc-wrap-right-text{float:right}#ez-toc-container a{color:#444;box-shadow:none;text-decoration:none;text-shadow:none;display:inline-flex;align-items:stretch;flex-wrap:nowrap}#ez-toc-container a:visited{color:#9f9f9f}#ez-toc-container a:hover{text-decoration:underline}#ez-toc-container.ez-toc-black a{color:#FFF}#ez-toc-container.ez-toc-black a:visited{color:#FFF}#ez-toc-container a.ez-toc-toggle{display:flex;align-items:center;color:#444}.ez-toc-widget-container ul.ez-toc-list li::before{content:' ';position:absolute;left:0;right:0;height:30px;line-height:30px;z-index:-1}.ez-toc-widget-container ul.ez-toc-list li.active{background-color:#EDEDED}.ez-toc-widget-container li.active>a{font-weight:900}.ez-toc-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid #fff0;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.ez-toc-btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.ez-toc-btn:hover,.ez-toc-btn:focus{color:#333;text-decoration:none}.ez-toc-btn:active,.ez-toc-btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgb(0 0 0 / .125);box-shadow:inset 0 3px 5px rgb(0 0 0 / .125)}.ez-toc-btn-default{color:#333;background-color:#fff;border-color:#ccc}.ez-toc-btn-default:hover,.ez-toc-btn-default:focus,.ez-toc-btn-default:active,.ez-toc-btn-default.active{color:#333;background-color:#ebebeb;border-color:#adadad}.ez-toc-btn-default:active,.ez-toc-btn-default.active{background-image:none}.ez-toc-btn-sm,.ez-toc-btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.ez-toc-btn-xs{padding:1px 5px}.ez-toc-btn-default{text-shadow:0 -1px 0 rgb(0 0 0 / .2);-webkit-box-shadow:inset 0 1px 0 rgb(255 255 255 / .15),0 1px 1px rgb(0 0 0 / .075);box-shadow:inset 0 1px 0 rgb(255 255 255 / .15),0 1px 1px rgb(0 0 0 / .075)}.ez-toc-btn-default:active{-webkit-box-shadow:inset 0 3px 5px rgb(0 0 0 / .125);box-shadow:inset 0 3px 5px rgb(0 0 0 / .125)}.ez-toc-btn:active,.btn.active{background-image:none}.ez-toc-btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#e0e0e0));background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.ez-toc-btn-default:hover,.ez-toc-btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.ez-toc-btn-default:active,.ez-toc-btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.ez-toc-pull-right{float:right!important;margin-left:10px}#ez-toc-container label.cssicon,#ez-toc-widget-container label.cssicon{height:30px}.ez-toc-glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;line-height:1;-moz-osx-font-smoothing:grayscale}.ez-toc-glyphicon:empty{width:1em}.ez-toc-toggle i.ez-toc-glyphicon{font-size:16px;margin-left:2px}#ez-toc-container input{position:absolute;left:-999em}#ez-toc-container input[type="checkbox"]:checked+nav,#ez-toc-widget-container input[type="checkbox"]:checked+nav{opacity:0;max-height:0;border:none;display:none}#ez-toc-container label{position:relative;cursor:pointer;display:initial}#ez-toc-container .ez-toc-js-icon-con{position:relative;cursor:pointer;display:initial}#ez-toc-container .ez-toc-toggle label{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}#ez-toc-container .ez-toc-js-icon-con{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}div#ez-toc-container .ez-toc-title{display:initial}.ez-toc-wrap-center{margin:0 auto 1em auto!important}#ez-toc-container a.ez-toc-toggle{color:#444;background:inherit;border:inherit}.ez-toc-toggle #item{position:absolute;left:-999em}label.cssicon .ez-toc-glyphicon:empty{font-size:16px;margin-left:2px}label.cssiconcheckbox{display:none}.ez-toc-widget-container ul li a{padding-left:10px;display:inline-flex;align-items:stretch;flex-wrap:nowrap}.ez-toc-widget-container ul.ez-toc-list li{height:auto!important}.ez-toc-cssicon{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}.ez-toc-icon-toggle-span{display:flex;align-items:center;width:35px;height:30px;justify-content:center;direction:ltr}#ez-toc-container .eztoc-toggle-hide-by-default{display:none}.eztoc_no_heading_found{background-color:#ff0;padding-left:10px}.eztoc-hide{display:none}.term-description .ez-toc-title-container p:nth-child(2){width:50px;float:right;margin:0}.ez-toc-list.ez-toc-columns-2{column-count:2;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-2>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-3{column-count:3;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-3>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-4{column-count:4;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-4>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-optimized{column-fill:balance;orphans:2;widows:2}.ez-toc-list.ez-toc-columns-optimized>li{display:block;break-inside:avoid;page-break-inside:avoid}@media (max-width:768px){.ez-toc-list.ez-toc-columns-2,.ez-toc-list.ez-toc-columns-3,.ez-toc-list.ez-toc-columns-4{column-count:1;column-gap:0}}@media (max-width:1024px) and (min-width:769px){.ez-toc-list.ez-toc-columns-4{column-count:2}.ez-toc-list.ez-toc-columns-3{column-count:2}}.fusion-footer #ez-toc-container{display:none}