.subscription-badge {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.badge-plan {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-status.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.badge-status.paused {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.badge-status.cancelled, .badge-status.expired {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.subscription-details {
    width: 100%;
}

.subscription-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription-header h3 {
    color: white;
    font-size: 24px;
    margin: 0 0 5px 0;
}

.plan-tier {
    color: #4CAF50;
    font-size: 14px;
    margin: 0;
}

.subscription-price {
    text-align: right;
}

.price {
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.subscription-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 5px;
}

.info-value {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.status-active {
    color: #4CAF50 !important;
}

.status-paused {
    color: #FFC107 !important;
}

.status-cancelled, .status-expired {
    color: #F44336 !important;
}

.subscription-features {
    margin-bottom: 30px;
}

.subscription-features h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.subscription-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscription-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.subscription-features li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 18px;
}

.subscription-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-outline-warning {
    background: transparent;
    border: 1px solid #FFC107;
    color: #FFC107;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background: #FFC107;
    color: #000;
}

.btn-outline-danger {
    background: transparent;
    border: 1px solid #F44336;
    color: #F44336;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background: #F44336;
    color: white;
}

.subscription-history {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.subscription-history h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.history-list {
    max-height: 400px;
    overflow-y: auto;
}

.history-item {
    display: flex;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 10px;
}

.history-icon {
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.history-icon i {
    color: #4CAF50;
}

.history-details h5 {
    color: white;
    font-size: 14px;
    margin-bottom: 3px;
}

.history-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin:0;
}
.history-note {
color: rgba(255, 255, 255, 0.8);
font-size: 13px;
margin-top: 5px !important;
}
.no-subscription {
text-align: center;
padding: 60px 20px;
}
.no-subscription i {
font-size: 64px;
color: rgba(255, 255, 255, 0.3);
margin-bottom: 20px;
}
.no-subscription h3 {
color: white;
font-size: 24px;
margin-bottom: 10px;
}
.no-subscription p {
color: rgba(255, 255, 255, 0.6);
margin-bottom: 30px;
}