.cits-subscription-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 24px;
    margin: 20px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-left: 5px solid #2271b1;
    transition: transform 0.3s ease;
}

.cits-subscription-box:hover {
    transform: translateY(-2px);
}

.cits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f1;
    padding-bottom: 15px;
}

.cits-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #1d2327;
    font-weight: 700;
}

.cits-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cits-badge.active {
    background-color: #dcfce7;
    color: #166534;
}

.cits-badge.inactive {
    background-color: #fee2e2;
    color: #991b1b;
}

.cits-details p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #50575e;
}

.cits-details strong {
    color: #1d2327;
    width: 140px;
    display: inline-block;
}

.cits-actions {
    margin-top: 25px;
    text-align: center;
}

.cits-btn {
    background-color: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.cits-btn:hover {
    background-color: #135e96;
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.cits-btn:active {
    transform: scale(0.98);
}

.cits-note {
    font-size: 0.8rem;
    color: #646970;
    margin-top: 10px;
    font-style: italic;
}

.cits-error {
    color: #d63638;
    background: #fcf0f1;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Loading State for Button */
.cits-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
    color: transparent;
}

.cits-btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: cits-spin 0.6s linear infinite;
}

@keyframes cits-spin {
    to { transform: rotate(360deg); }
}
