.ctp-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.ctp-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ctp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ctp-table {
    background: #f3f3f3;
    border-radius: 12px;
    overflow: hidden;
}

.ctp-head {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.ctp-head img {
    width: 24px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

.ctp-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.ctp-row a {
    color: #0a7;
    text-decoration: none;
    font-weight: 600;
}

/* RELATED LINKS */

.ctp-related {
    margin-top: 30px;
    text-align: center;
}

.ctp-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ctp-links a {
    padding: 8px 12px;
    background: #eee;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

.ctp-links a:hover {
    background: #ddd;
}