/* license-stripe.css - 物販リサーチツール ライセンス管理システム スタイルシート */

/* ベースフォント設定 */
.license-form-container,
.license-dashboard-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* フォームコンテナ */
.license-form-container {
    max-width: 500px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    position: relative;
}

/* ヘッダー */
.license-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.license-form-header h3 {
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 600;
}

.license-form-subtitle {
    color: #27ae60;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* トライアル情報 */
.license-trial-info,
.license-pricing-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.license-trial-info {
    background: linear-gradient(135deg, #52c234 0%, #27ae60 100%);
}

.license-trial-highlight,
.license-price {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.license-trial-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-trial-period,
.license-price-amount {
    font-size: 28px;
    font-weight: bold;
}

.license-price-currency {
    font-size: 16px;
    opacity: 0.9;
}

.license-trial-features,
.license-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.license-trial-features li,
.license-features li {
    padding: 3px 0;
    font-size: 14px;
}

/* フォームステップ */
.license-form-step {
    margin-bottom: 25px;
}

.license-form-step h4 {
    color: #34495e;
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
}

/* フォームフィールド */
.license-form-field {
    margin-bottom: 15px;
}

.license-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.license-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.license-input.trial-focus:focus {
    border-color: #52c234;
    box-shadow: 0 0 0 3px rgba(82, 194, 52, 0.1);
}

/* Stripe要素 */
.license-card-element {
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.license-card-element.StripeElement--focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.license-card-element.StripeElement--invalid {
    border-color: #e74c3c;
}

.license-card-element.StripeElement--complete {
    border-color: #27ae60;
}

.license-error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.license-error-message:not(:empty) {
    display: block;
}

/* 同意事項 */
.license-form-agreements {
    margin: 25px 0;
}

.license-checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    line-height: 1.4;
}

.license-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
    transform: scale(1.2);
    cursor: pointer;
}

.license-checkbox-text {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    user-select: none;
}

.license-checkbox-text a {
    color: #667eea;
    text-decoration: none;
}

.license-checkbox-text a:hover {
    text-decoration: underline;
}

/* ボタン */
.license-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.license-btn-primary {
    background: #667eea;
    color: white;
}

.license-btn-primary:hover:not(:disabled) {
    background: #5a6fd8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.license-btn-success {
    background: #27ae60;
    color: white;
}

.license-btn-success:hover:not(:disabled) {
    background: #229954;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.license-btn-danger {
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    width: auto;
}

.license-btn-danger:hover:not(:disabled) {
    background: #c82333;
    transform: translateY(-1px);
}

.license-btn-outline {
    background: transparent;
    color: #17a2b8;
    border: 2px solid #17a2b8;
}

.license-btn-outline:hover:not(:disabled) {
    background: #17a2b8;
    color: white;
    text-decoration: none;
}

.license-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* リンクボタン */
.license-link-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.license-link-btn:hover {
    background: #5a6fd8;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* スピナー */
.license-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff40;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: license-spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes license-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* メッセージ */
.license-message {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
    animation: license-fadeIn 0.3s ease;
}

.license-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.license-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.license-message.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

@keyframes license-fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* フォームフッター */
.license-form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.license-security-notice {
    text-align: center;
    margin-bottom: 20px;
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.4;
}

.license-trial-notice,
.license-trial-details {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #17a2b8;
}

.license-trial-notice h5,
.license-trial-details h5 {
    color: #17a2b8;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.license-trial-notice ul,
.license-trial-details ul {
    margin: 0;
    padding-left: 20px;
}

.license-trial-notice li,
.license-trial-details li {
    color: #495057;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.license-billing-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.license-continuation-notice {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border-left: 4px solid #6c757d;
}

.license-continuation-notice h5 {
    color: #495057;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.license-continuation-notice p {
    color: #6c757d;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.license-upgrade-link {
    margin-top: 15px;
}

/* サクセス画面 */
.license-success-container {
    text-align: center;
    padding: 20px;
    animation: license-fadeIn 0.5s ease;
}

.license-success-icon {
    width: 60px;
    height: 60px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 20px auto;
    animation: license-pulse 2s infinite;
}

@keyframes license-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.license-success-container h3 {
    color: #27ae60;
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.license-success-container p {
    color: #6c757d;
    margin: 0 0 25px 0;
    font-size: 16px;
}

.license-key-display {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.license-key-display label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #495057;
}

.license-key-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-key-value code {
    flex: 1;
    background: #e9ecef;
    padding: 12px 15px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    letter-spacing: 1px;
    border: 1px solid #ced4da;
    word-break: break-all;
}

.license-copy-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s, transform 0.3s;
}

.license-copy-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.license-success-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.license-success-details h4 {
    color: #495057;
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.license-success-details ol {
    margin: 0;
    padding-left: 20px;
}

.license-success-details li {
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.4;
}

.license-billing-reminder {
    background: #e8f4f8;
    border: 1px solid #bee5eb;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.license-billing-reminder h4 {
    color: #17a2b8;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.license-billing-reminder p {
    color: #495057;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.license-email-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.4;
}

/* サポート情報 */
.license-support-info {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

.license-support-info a {
    color: #17a2b8;
    text-decoration: none;
    font-weight: 500;
}

.license-support-info a:hover {
    text-decoration: underline;
}

/* ダッシュボード */
.license-dashboard-container {
    max-width: 700px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
}

.license-dashboard-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e8ed;
}

.license-dashboard-header h3 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.license-dashboard-header p {
    color: #7f8c8d;
    margin: 0;
    font-size: 16px;
}

.license-key-lookup {
    margin-bottom: 30px;
}

.license-key-lookup label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #34495e;
}

.license-input-group {
    display: flex;
    gap: 10px;
}

.license-input-group .license-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.license-input-group .license-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.license-input-group .license-btn {
    white-space: nowrap;
    padding: 12px 25px;
    width: auto;
}

.license-subscription-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    animation: license-fadeIn 0.5s ease;
}

.subscription-details h4 {
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #495057;
    flex: 0 0 40%;
}

.info-value {
    color: #212529;
    text-align: right;
    flex: 1;
}

.info-value code {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

/* ステータス */
.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-trial {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-active {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-canceled {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-unknown {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

.subscription-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

/* ヘルプ・FAQ */
.license-dashboard-help {
    margin-bottom: 30px;
}

.license-dashboard-help h4 {
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.license-faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.license-faq-item h5 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.license-faq-item p {
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

.license-dashboard-support {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #bee5eb;
}

.license-dashboard-support h4 {
    color: #17a2b8;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.license-dashboard-support p {
    color: #495057;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.license-support-contact p {
    margin: 5px 0;
}

.license-support-contact a {
    color: #17a2b8;
    text-decoration: none;
    font-weight: 600;
}

.license-support-contact a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .license-form-container,
    .license-dashboard-container {
        margin: 10px;
        padding: 20px;
    }
    
    .license-form-header h3 {
        font-size: 20px;
    }
    
    .license-trial-period,
    .license-price-amount {
        font-size: 24px;
    }
    
    .license-input-group {
        flex-direction: column;
    }
    
    .license-input-group .license-btn {
        margin-top: 10px;
        width: 100%;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-label,
    .info-value {
        flex: none;
        text-align: left;
    }
    
    .license-key-value {
        flex-direction: column;
        gap: 10px;
    }
    
    .license-key-value code {
        font-size: 14px;
    }
    
    .license-copy-btn {
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .license-form-container,
    .license-dashboard-container {
        margin: 5px;
        padding: 15px;
    }
    
    .license-trial-highlight,
    .license-price {
        flex-direction: column;
        gap: 5px;
    }
    
    .license-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* サブスクリプション情報カード */
.subscription-card {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.subscription-header h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.subscription-status {
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-status.active {
    background-color: #27ae60;
}

.subscription-status.trial {
    background-color: #f39c12;
}

.subscription-status.past-due {
    background-color: #e74c3c;
}

.subscription-status.canceled {
    background-color: #95a5a6;
}

.subscription-status.incomplete {
    background-color: #e67e22;
}

/* 情報表示行 */
.subscription-details {
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #495057;
    flex: 1;
}

.info-value {
    color: #2c3e50;
    font-weight: 500;
    text-align: right;
    flex: 1;
}

/* アクションボタン */
.subscription-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.manage-btn {
    background-color: #667eea;
    color: white;
}

.manage-btn:hover {
    background-color: #5a6fd8;
}

.cancel-btn {
    background-color: #e74c3c;
    color: white;
}

.cancel-btn:hover {
    background-color: #c0392b;
}

.reactivate-btn {
    background-color: #27ae60;
    color: white;
}

.reactivate-btn:hover {
    background-color: #229954;
}

/* メッセージスタイルの改良 */
.license-message {
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    font-weight: 500;
    display: none;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.license-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #b8dabd;
    color: #155724;
}

.license-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #f1b0b7;
    color: #721c24;
}

.license-message.warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #fce89d;
    color: #856404;
}

/* ローディングアニメーション */
.license-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.license-btn:disabled::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* レスポンシブ対応の改良 */
@media (max-width: 768px) {
    .subscription-card {
        padding: 20px;
        margin-top: 15px;
    }
    
    .subscription-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }
    
    .info-label,
    .info-value {
        flex: none;
        text-align: left;
    }
    
    .info-value {
        font-size: 16px;
        color: #667eea;
        font-weight: 600;
    }
    
    .subscription-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .license-dashboard-container {
        padding: 15px;
        margin: 5px;
    }
    
    .license-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .license-input-group .license-input,
    .license-input-group .license-btn {
        width: 100%;
        font-size: 16px; /* iOS のズームを防ぐ */
    }
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .subscription-card {
        border: 2px solid #000;
    }
    
    .info-row {
        border-bottom: 1px solid #666;
    }
    
    .subscription-status {
        border: 1px solid #000;
    }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .license-dashboard-container {
        background-color: #1e1e1e;
        color: #ffffff;
    }
    
    .subscription-card {
        background-color: #2d2d2d;
        border-color: #444;
    }
    
    .subscription-header h4 {
        color: #ffffff;
    }
    
    .info-label {
        color: #cccccc;
    }
    
    .info-value {
        color: #ffffff;
    }
    
    .license-input {
        background-color: #2d2d2d;
        border-color: #444;
        color: #ffffff;
    }
    
    .license-input:focus {
        border-color: #667eea;
    }
}

/* フォーカス時のアクセシビリティ改良 */
.action-btn:focus,
.license-btn:focus,
.license-input:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* アニメーション設定 */
.subscription-card {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 印刷時のスタイル */
@media print {
    .subscription-actions,
    .license-dashboard-help,
    .license-dashboard-support {
        display: none;
    }
    
    .license-dashboard-container {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .subscription-status {
        background: transparent !important;
        color: #000 !important;
        border: 1px solid #000;
    }
}