.plm-order-history {
    max-width: 1000px;
    margin: 1.5em auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.plm-order-item {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    margin-bottom: 1.5em;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease;
}

.plm-order-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.plm-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 1.2em 1.5em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
}

.plm-order-header h3 {
    margin: 0;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
}

.plm-order-date {
    color: rgba(255,255,255,0.9);
    font-size: 0.9em;
}

.plm-order-details {
    padding: 1.2em 1.5em 0.8em;
}

.plm-order-items {
    padding: 0 1.5em 1.2em;
    border-top: 1px solid #e1e5e9;
}

.plm-order-info p {
    margin: 0.3em 0;
    font-size: 0.9em;
}

.plm-order-price {
    font-size: 1.1em;
    font-weight: 700;
    color: #2563eb;
    text-align: right;
}

.plm-order-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.75em;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plm-status-completed {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.plm-status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.plm-status-failed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.plm-status-refunded {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

code {
    background: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: monospace;
}

.plm-download-section {
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid #eee;
}

.plm-latest-version {
    margin-bottom: 1.5em;
}

.plm-latest-version h4 {
    margin: 0 0 0.5em;
}

.plm-download-button {
    display: inline-flex;
    align-items: center;
    padding: 0.6em 1.2em;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.plm-download-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.plm-download-button.plm-latest-version {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.plm-download-button.plm-latest-version:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.plm-no-orders {
    text-align: center;
    padding: 3em 2em;
    background: #f8fafc;
    border-radius: 12px;
    color: #6b7280;
    border: 1px solid #e1e5e9;
}

.plm-login-required {
    text-align: center;
    padding: 3em 2em;
    background: #fef3c7;
    border-radius: 12px;
    color: #92400e;
    border: 1px solid #fbbf24;
}

.plm-subscription-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.75em;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plm-subscription-status.plm-status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.plm-subscription-status.plm-status-canceled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.plm-subscription-status.plm-status-expired {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.plm-subscription-actions {
    margin-top: 1em;
    display: block;
    text-align: left;
}

.plm-renewal-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
}

.plm-renewal-status-group {
    display: flex;
    align-items: center;
    gap: 1em;
}

.plm-cancel-link-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 1em;
}

.plm-cancel-subscription {
    background: none;
    border: none;
    color: #676b70;
    font-size: 0.8em;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-left: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.plm-cancel-subscription:hover {
    opacity: 1;
    color: #6b7280;
    background: none;
    border: none;
    transform: none;
}

.plm-status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 0.25em 0.75em;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

code {
    background: #f1f5f9;
    padding: 0.3em 0.6em;
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 0.9em;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.plm-order {
    margin-bottom: 1.5em;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.plm-order-items {
    padding: 0;
}

.plm-order-items h4 {
    margin: 0;
    padding: 1em 1.5em;
    font-size: 1em;
    font-weight: 600;
    color: #374151;
    background: #f8fafc;
    border-bottom: 1px solid #e1e5e9;
    letter-spacing: 0.025em;
}

.plm-license-key {
    margin: 0;
    padding: 1em 1.5em;
    background: #f8fafc;
    border: none;
    border-top: 1px solid #e1e5e9;
}

.plm-license-key-label {
    font-size: 0.8em;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5em;
}

.plm-license-key code {
    display: inline-block;
    margin: 0;
    padding: 0.6em 1em;
    background: #1f2937;
    color: #10b981;
    border: none;
    border-radius: 8px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 0.85em;
    word-break: break-all;
    letter-spacing: 0.5px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.plm-product-info {
    padding: 1.5em;
    border-bottom: 1px solid #e1e5e9;
}

.plm-product-info h4 {
    margin: 0 0 0.8em 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.plm-plan-name {
    color: #6b7280;
    font-size: 0.9em;
    margin: 0 0 1em 0;
    font-weight: 500;
}

.plm-download-section {
    margin: 1em 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    align-items: center;
}

.plm-license-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.75em;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.5em 0;
}

.plm-status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.plm-status-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.plm-status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.plm-subscription-info {
    padding: 1.5em;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1em;
    border: 1px solid #e1e5e9;
}

.plm-auto-renew-status {
    display: inline-flex;
    align-items: center;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    position: relative;
}

.plm-auto-renew-status.active::before {
    content: "✓ ";
    margin-right: 0.5em;
    font-weight: bold;
}

.plm-subscription-benefits {
    margin: 1em 0;
    padding: 1em;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    font-size: 0.85em;
    color: #047857;
}

.plm-subscription-benefits h6 {
    margin: 0 0 0.5em 0;
    font-weight: 600;
    color: #059669;
}

.plm-subscription-benefits ul {
    margin: 0;
    padding-left: 1.2em;
    list-style-type: none;
}

.plm-subscription-benefits li {
    margin: 0.3em 0;
    position: relative;
}

.plm-subscription-benefits li::before {
    content: "✓";
    position: absolute;
    left: -1.2em;
    color: #10b981;
    font-weight: bold;
}

.plm-renewal-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3em 0.8em;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5em;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.plm-savings-highlight {
    display: inline-block;
    padding: 0.2em 0.6em;
    background: #fef3c7;
    color: #92400e;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    margin-left: 0.5em;
    border: 1px solid #fbbf24;
}

.plm-convenience-note {
    margin-top: 0.5em;
    padding: 0.8em;
    background: rgba(59, 130, 246, 0.05);
    border-left: 3px solid #3b82f6;
    border-radius: 0 8px 8px 0;
    font-size: 0.85em;
    color: #1e40af;
    font-style: italic;
}

/* Cancel subscription styles moved to .plm-cancel-link-container section above */

/* Domain management styles */
.plm-domain-management {
    margin: 0;
    padding: 1.5em;
    background: #f8fafc;
    border-top: 1px solid #e1e5e9;
}

.plm-domain-management h5 {
    margin: 0 0 1em 0;
    font-size: 0.9em;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plm-domains-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.plm-domain-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.5em 0.8em;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 0.85em;
    transition: all 0.2s ease;
}

.plm-domain-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

.plm-domain-item span {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    color: #1f2937;
    font-weight: 500;
}

.plm-remove-domain {
    padding: 0.2em 0.6em;
    font-size: 0.75em;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.plm-remove-domain:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.plm-remove-domain:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.plm-domain-input-group {
    display: flex;
    gap: 0.75em;
    align-items: center;
}

.plm-domain-input {
    flex: 1;
    padding: 0.75em 1em;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 0.9em;
    background: #fff;
    transition: all 0.2s ease;
}

.plm-domain-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.plm-add-domain-btn {
    padding: 0.75em 1.5em;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    white-space: nowrap;
}

.plm-add-domain-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.plm-add-domain-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.plm-domain-input-error {
    color: #ef4444;
    font-size: 0.85em;
    margin-top: 0.5em;
    padding: 0.5em 0.75em;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    display: none;
}

.plm-domains-limit-reached {
    margin-top: 1em;
    color: #92400e;
    background: #fef3c7;
    padding: 0.75em 1em;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85em;
    font-weight: 500;
}

.plm-download-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    margin-top: 1em;
}

.plm-download-links .plm-version-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.plm-download-button .plm-version {
    font-size: 0.8em;
    margin-left: 0.5em;
    opacity: 0.9;
    background: rgba(255,255,255,0.2);
    padding: 0.2em 0.5em;
    border-radius: 4px;
}

/* Responsive design */
@media (max-width: 768px) {
    .plm-order-history {
        margin: 1em;
        max-width: none;
    }
    
    .plm-order-price {
        text-align: left;
    }
    
    .plm-domain-input-group {
        flex-direction: column;
        gap: 0.5em;
    }
    
    .plm-add-domain-btn {
        width: 100%;
    }
    
    .plm-domains-list {
        flex-direction: column;
        gap: 0.3em;
    }
    
    .plm-domain-item {
        justify-content: space-between;
        padding: 0.75em;
    }
    
    .plm-renewal-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
    }
    
    .plm-cancel-link-container {
        justify-content: center;
        margin-top: 0.5em;
    }
    
    .plm-subscription-benefits {
        font-size: 0.8em;
        padding: 0.8em;
    }
}

/* Notification system */
.plm-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.plm-notification-success {
    background-color: #28a745;
}

.plm-notification-error {
    background-color: #dc3545;
}

.plm-notification-info {
    background-color: #007cba;
}

/* Enhanced domain item animations */
.plm-domain-item {
    transition: all 0.3s ease;
}

.plm-domain-item:hover {
    background-color: #f0f0f0;
    border-color: #2271b1;
}

.plm-domain-item.removing {
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
    opacity: 0.7;
}

.plm-domain-item.adding {
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
    animation: highlightAdd 1.5s ease-out;
}

@keyframes highlightAdd {
    0% {
        background-color: #d4edda;
        border-color: #c3e6cb;
        transform: scale(1.02);
    }
    100% {
        background-color: #f9f9f9;
        border-color: #eee;
        transform: scale(1);
    }
}

/* Loading states */
.plm-add-domain-btn:disabled,
.plm-remove-domain:disabled {
    position: relative;
    cursor: not-allowed;
}

.plm-add-domain-btn:disabled::after,
.plm-remove-domain:disabled::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Expandable sections */
.plm-expandable-section {
    margin: 1em 0;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.plm-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8em 1em;
    background: #f8fafc;
    border-bottom: 1px solid #e1e5e9;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
    z-index: 10;
}

.plm-section-header.animating {
    opacity: 0.7;
    cursor: wait;
}

.plm-section-header:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plm-section-header.collapsed {
    border-bottom: none;
}

.plm-section-title {
    font-weight: 600;
    color: #374151;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plm-toggle-icon {
    font-size: 0.8em;
    color: #6b7280;
    transition: transform 0.2s ease;
    font-weight: bold;
}

.plm-section-header.collapsed .plm-toggle-icon {
    transform: rotate(-90deg);
}

.plm-section-content {
    padding: 1em;
    overflow: hidden;
}

.plm-section-content.collapsed {
    display: none;
}

.plm-subsection-content.collapsed {
    display: none !important;
}

/* Sub-expandable sections for older versions */
.plm-expandable-subsection {
    margin-top: 1em;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.plm-subsection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6em 0.8em;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.plm-subsection-header.animating {
    opacity: 0.7;
    cursor: wait;
}

.plm-subsection-header:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.plm-subsection-title {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.85em;
}

.plm-subsection-content {
    padding: 0.8em;
    border-top: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.plm-subsection-content.collapsed {
    display: none;
}

/* Latest download styling */
.plm-latest-download {
    margin-bottom: 1em;
}

.plm-latest-download .plm-download-button {
    font-size: 1em;
    padding: 0.8em 1.5em;
}

/* Older version downloads */
.plm-version-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.plm-download-button.plm-older-version {
    font-size: 0.85em;
    padding: 0.5em 1em;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    box-shadow: 0 2px 4px rgba(107, 114, 128, 0.2);
}

.plm-download-button.plm-older-version:hover {
    background: linear-gradient(135deg, #4b5563, #374151);
    box-shadow: 0 4px 8px rgba(107, 114, 128, 0.3);
}

/* Domain management in expandable sections */
.plm-expandable-section .plm-domain-management {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.plm-expandable-section .plm-domain-management h5 {
    display: none; /* Hide since title is in section header */
}

/* License key styling in expandable sections */
.plm-expandable-section .plm-license-key {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

/* Copy license button */
.plm-license-key-value {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.plm-copy-license-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    padding: 0.4em 0.8em;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.plm-copy-license-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.plm-copy-license-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.plm-copy-license-btn.copied {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.plm-copy-license-btn.copied:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.plm-copy-icon {
    font-size: 0.9em;
}

.plm-copy-text {
    font-size: 0.85em;
}

/* Responsive adjustments for copy button */
@media (max-width: 768px) {
    .plm-license-key-value {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8em;
    }
    
    .plm-copy-license-btn {
        align-self: flex-start;
        padding: 0.5em 1em;
        font-size: 0.9em;
    }
}

/* Responsive adjustments for expandable sections */
@media (max-width: 768px) {
    .plm-section-header {
        padding: 0.6em 0.8em;
    }
    
    .plm-section-title {
        font-size: 0.8em;
    }
    
    .plm-section-content {
        padding: 0.8em;
    }
    
    .plm-subsection-header {
        padding: 0.5em 0.6em;
    }
    
    .plm-subsection-content {
        padding: 0.6em;
    }
    
    .plm-version-downloads {
        flex-direction: column;
    }
    
    .plm-download-button.plm-older-version {
        width: 100%;
        text-align: center;
    }
}

/* Reactivate subscription button */
.plm-reactivate-subscription {
    display: inline-flex;
    align-items: center;
    padding: 0.5em 1em;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
    margin-left: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.plm-reactivate-subscription:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
    color: white;
    text-decoration: none;
}

.plm-reactivate-subscription:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.plm-reactivate-subscription:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
} 