/* ============================================
   Freedom Livestreams Academy - Plan Page Styles
   ============================================ */

/* Plan Info List - Better spacing for long content */
.plan-item .plan-info {
    max-height: 500px;
    overflow-y: auto;
    padding: 0;
}

.plan-item .plan-info::-webkit-scrollbar {
    width: 6px;
}

.plan-item .plan-info::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.plan-item .plan-info::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.plan-item .plan-info::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Freedom Livestreams Level Items */
.plan-item .plan-info li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Matrix Commission Header */
.plan-item .plan-info li.text-center {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 10px 5px !important;
    margin: 0 !important;
    border-bottom: 2px solid rgba(249, 159, 11, 0.5) !important;
}

/* Level Commission Items - Better readability */
.plan-item .plan-info li strong.profit {
    color: #f99f0b !important;
    font-weight: 700;
}

/* Total Return Section */
.plan-item .total-return {
    background: rgba(255, 255, 255, 0.05);
}

.plan-item .return-remainders .remainder {
    font-weight: 600;
    margin: 0 3px;
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .plan-item .plan-info li {
        font-size: 11px !important;
        padding: 6px 3px !important;
    }
    
    .plan-item .plan-info li strong.profit {
        font-size: 12px !important;
    }
}

/* Plan Item Height Adjustment */
.plan-item {
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.plan-item .plan-info {
    flex: 1;
}

