.license-card {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding: 20px 0;
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.license-header h3 {
    margin: 0;
}

.product-link {
    color: #2271b1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-link:hover {
    color: #135e96;
    text-decoration: underline;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-row input {
    width: 100%;
    max-width: 400px;
}

.status {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.status.active {
    background: #d4edda;
    color: #155724;
}

.status.inactive {
    background: #f8d7da;
    color: #721c24;
}

.status.expired {
    background: #f8d7da;
    color: #721c24;
}

.license-key-copy {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: inline-block;
    user-select: none;
}

.license-key-copy:hover {
    background: rgba(34, 113, 177, 0.1);
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.license-key-copy:active {
    background: rgba(34, 113, 177, 0.2);
    transform: scale(0.98);
}

.copy-feedback {
    color: #008a00;
    font-weight: 600;
    margin-left: 10px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expired-notice {
    color: #dc3232;
    font-weight: 600;
}

.renewal-notice {
    margin-top: 15px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
}

.renewal-message {
    margin: 0 0 10px 0;
    color: #856404;
    font-size: 14px;
}

.renewal-button {
    display: inline-block;
    padding: 10px 20px;
    background: #2271b1;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.renewal-button:hover {
    background: #135e96;
}

.renewal-button:active {
    background: #0a4b78;
}

.expires-at {
    margin-top: 10px;
    color: #666;
}
