/**
 * Xteno Custom Elements Styles
 */

/* Checklist Element */
.xteno-checklist {
    padding: 0;
    margin: 0 0 20px;
}
.xteno-checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.xteno-checklist-icon {
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
    background-color: #4285f4;
    border-radius: 50%;
}
.xteno-checklist-icon:after {
    content: '';
    position: absolute;
    left: 9px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.xteno-checklist-text {
    flex: 1;
    line-height: 1.4;
} 