/* Add to existing CSS */
.simple-chart {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.chart-segment {
    padding: 10px;
    color: white;
    font-weight: bold;
    text-align: center;
}

.simple-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.simple-table th, .simple-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.simple-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.positive {
    color: var(--primary-green);
}

.family-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.family-member {
    text-align: center;
    width: 100px;
}

.member-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.member-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.member-role {
    font-size: 12px;
    color: var(--secondary-gray);
}

.title-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Simplified platform demo cards */
.platform-demo-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-align: center;
    padding: 20px;
    height: 100%;
}

.platform-demo-card:hover {
    transform: translateY(-5px);
}

.platform-demo-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
}

.platform-demo-title {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.platform-demo-text {
    color: var(--secondary-gray);
    margin-bottom: 20px;
}

.platform-demos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
