.tweety-interactive-container {
    display: flex;
    gap: 40px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #FAF9F6;
    padding: 30px;
    border-radius: 24px;
}

.tweety-left-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tweety-right-column {
    flex: 0.8;
}

.tweety-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tweety-group-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #8C8C8C;
    text-transform: uppercase;
}

.tweety-options-row {
    display: flex;
    gap: 12px;
}

.tweety-options-row.wrap-options {
    flex-wrap: wrap;
}

.tweety-opt-btn {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    flex-grow: 1;
    justify-content: flex-start;
}

.tweety-opt-btn:hover {
    border-color: #1a1a1a;
}

/* Active State Styles */
.tweety-opt-btn.active.green-active {
    background-color: #E8F5E9;
    border: 2px solid #2ECC71;
    box-shadow: 2px 2px 0px #2ECC71;
}

.tweety-opt-btn.active.black-active {
    background-color: #1A1A1A;
    color: #FFFFFF;
    border: 1px solid #1A1A1A;
}

.tweety-opt-btn.active.dot-active {
    border: 2px solid #1A1A1A;
    font-weight: 700;
    box-shadow: 2px 2px 0px #1A1A1A;
}

.tweety-opt-btn.active.yellow-active {
    background-color: #FFD700;
    border: 2px solid #1A1A1A;
    box-shadow: 3px 3px 0px #1A1A1A;
    font-weight: 700;
}

/* Icons */
.tweety-check-icon {
    margin-left: auto;
    color: #2ECC71;
    font-weight: bold;
}

.tweety-check-icon-circle {
    margin-left: auto;
    background: #FFFFFF;
    color: #1A1A1A;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.tweety-dot-icon {
    margin-left: auto;
    color: #1A1A1A;
}

/* Right Card Styling */
.tweety-plan-card {
    background: #FFFFFF;
    border: 1px solid #1a1a1a;
    border-radius: 32px;
    padding: 30px;
    box-shadow: 4px 4px 0px #1a1a1a;
}

.tweety-plan-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tweety-plan-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

.tweety-plan-subtitle {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
    margin-bottom: 24px;
}

.tweety-summary-box {
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    padding: 20px;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tweety-summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tweety-summary-lbl {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
}

.tweety-summary-item strong {
    font-size: 16px;
    color: #1a1a1a;
}

.tweety-summary-sublbl {
    font-size: 13px;
    color: #777;
}

.tweety-info-note {
    background-color: #FFFDF0;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666;
    border-left: 3px solid #FFD700;
}

.tweety-info-note p {
    margin: 0;
    line-height: 1.4;
}

.tweety-btn-primary {
    background-color: #1A1A1A;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.tweety-btn-primary:hover {
    background-color: #333333;
}

.tweety-disclaimer {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tweety-interactive-container {
        flex-direction: column;
        gap: 24px;
    }
}
